Design comparison
Solution retrospective
this is my 2nd solution, I add the alt attribute to img tag. using <main> tag. Open for feedback
Community feedback
- @aravindhan7Posted over 1 year ago
hey, one thing i have noticed is that, the font-family you used in CSS .text h2{ .... font-family: Outfit; .... } This doesnt work.
You missed to import the font , and after importing font, (https://www.w3docs.com/snippets/css/how-to-import-google-fonts-in-css-file.html) you should specify
font-family:"outfit", sans-serif;
the imported font should come inside double colon and a second font after comma is called fallback font.
A fallback font is a font face that is used when the primary font face is not loaded yet, or is missing glyphs necessary to render page content.
hope you understand!
Marked as helpful0@stevenarmandooPosted over 1 year agothank you for your feedback. I see what you mean. I'll try to fix that soon ! @aravindhan7
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord