@Praisepa1Submitted over 1 year ago
actually, I had little difficulty working with the @media but through the help of w3school I did it right.
actually, I had little difficulty working with the @media but through the help of w3school I did it right.
Hello, congratulations on your first project on Frontendmentor!
I see you didn't use the google font indicated in style-guide.md If you want to use google fonts you need to add a special style sheet link in the <head> section and then refer to the font in the CSS For this project you can find the font at Outfit Copy and add in the page head following code:
<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:wght@400;700&display=swap" rel="stylesheet">
and then add in your css file:
body {
font-family: "Sofia", sans-serif;
}
Hope my comment will be helpful for you!