Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • tnanney22 20

    @tnanney22

    Submitted

    What are you most proud of, and what would you do differently next time?

    I'm proud that I got it pretty close to the original with the font sizing and spacing.

    What challenges did you encounter, and how did you overcome them?

    I had no idea how to fix it for the mobile site so I had to research and gather more information and learned about media queries along the way.

    What specific areas of your project would you like help with?

    None, I figured out my problems I was having.

    @JonhKellyson

    Posted

    Perfeito.

    0
  • Tony 30

    @antonpetrov145

    Submitted

    What are you most proud of, and what would you do differently next time?

    All of this makes me proud, CSS is not something I fancy or I have good knowledge of.

    What challenges did you encounter, and how did you overcome them?

    • centering the div;
    • making the image smaller;

    What specific areas of your project would you like help with?

    Maybe with general execution - I have many magic numbers, would be good if I can remove them.

    @JonhKellyson

    Posted

    Man, te aconselho ao invés de colocar as fontes no HTML importa elas no css, por exemplo:

    html:

    <link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png"> <link rel="stylesheet" href="style.css"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap" rel="stylesheet">

    CSS:

    @import url('https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap');

    • OUTRO Ponto, também pode utilizar ROOT para deixar seu código mais simples em relação as cores e fontes utilizadas no seu projeto, outro exemplo irei deixar do meu código:

    :root { --fonte1: "Outfit", sans-serif; --corfundo: hsl(212, 45%, 89%); --corbranca: hsl(0, 0%, 100%); --corclara: hsl(219, 16%, 46%); --corescura: hsl(218, 44%, 22%); }

    /* você pode denominar o titulo como quiser */

    com isso, quando for por exemplo colocar a cor cinza claro no texto, basta utilizar este código:

    color: var(--corclara);

    Marked as helpful

    1