I could use some feedback. thanks!
Welcome to the forums @tayfundursun. Your page looks good. Some things to revisit;
- Verify your email addr with codepen so we can see you pen full view
- Keep the test script when forking the pen (
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
)
The test script, with all tests passing, should be included when you submit your projects. - Codepen provides the boilerplate for you. It only expects the code youâd put within the
body
element in the HTML editor. (No need to include thebody
tags). For anything you want to add to the<head>
element click on the âSettingsâ button, then HTML and add it into the âStuff for <head>â box.
For instance, links to fonts go in the box labeled âStuff for <head>â - Userâs are not seeing your page the way you want. You have a
strong
tag and text is not showing as strong. Browsers will do their best but you do not have that weight.
When you got the Lato font there were 10 styles to choose from. Most select the 400 as that is the normal weight. If you want a bold (strong) font then also select 700. - Accessibility is about being accessible to all users. Review the giving meaningful text to links lesson. For a more thorough explanation read Web Accessibility in Mind.
- âwikipedia entryâ is not accessible
On a side note, do not try and replicate the sample projects. They show just one way the project can be completed. The instructions say to make yours âfunctionally similarâ and to âgive it your own personal styleâ.
Thanks a lot, Roma. I did everything you have said. And from now on, Iâll give the projects my own personal style as much as possible.
Good job working through everything @tayfundursun.
This is what I meant for the font if you want the weights bold / strong
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
The first <li>
doesnât have a matching closing tag. Looks like it was deleted and the </strong>
was left.
Looking forward to seeing your next project.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.