Here is my page, your feedback will be great: https://codepen.io/mwikyo/pen/oNjYeMR
1 Like
Welcome to the forums @mwikyo. Your page looks good. Some things to revisit;
- Keep the test script when forking the pen (
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
).- The test script should be included, with all tests passing, when you submit your projects.
- When using codepen it only expects the code you’d put within the
<body> </body>
element in HTML. (No need to include the body tags). For anything you want to add to<head>
click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.- The link to your font would go in the box labeled ‘Stuff for <head>’
- Run your HTML code through the W3C validator.
- Make your page responsive. The video falls out of the container on smaller screens.
- I’m not seeing your page the way you want. You call the
font-family
Open Sans but you neitherlink
to it orimport
it. You need to do one or the other.
1 Like
Thank you Roma. Let me work on that.