Tesla tribute page feedback

Hi coders! I want to know your opinion about my tribute page! I would be glad if you can take a look and give feedback.
https://codepen.io/bemvy/full/dyONXyG

Welcome to the forums @bemvy. Your page looks good. Some things to revisit;

  • 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 the body 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.
  • Run your HTML code through the W3C validator.
    • There are HTML coding errors you should be aware of and address.
  • Do not use the <br> element to force line breaks or spacing. That’s what CSS is for.
  • Make your page responsive. Remember, the R in RWD stands for Responsive
    • There’s a horizontal scrollbar on smaller screens
  • You should not go from h1 to h4 to h2. Header should be in order. What you have coded as h4 could be a paragraph element instead.
    You could keep both the timeline and inventions as h2

Thank you for your suggestions! I will improve my code.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.