# Exercise Website Common Feedback

# Week 2B

# General HTML Reminders

  • the <title> should be the name of the website: Polished+
  • Make sure you are properly indenting your code. It makes it difficult to read and understand when the code is poorly indented. The Indent Rainbow extension can help with this!
  • there should be no <br> tags in your code. They have a very specific semantic use and should not be used to create spacing. Don't worry about spacing and line breaks at this point
  • href and src are case sensitive. Folders and files should all be lowercase to avoid case related errors in linking.
  • alt attributes are content that get read by screen readers and some users. You should be using proper capitalization in them.
  • You should avoid typing in all caps on the web, it is bad for accessibility. Right in normal sentence case and then we can style it later with CSS to make it all caps.
  • make sure you have your <header>, <main>, and <footer> tags!

# Content Specific

  • the <h1> should be wrapped around the <img> inside the <header>, the "Community feel" heading should be an <h2>
  • the "Community Feel" banner should be wrapped in either a <section> or a <header>
  • The logo bar, the "Design your brand..." content, and the "Join Now..." banner should be in three separate <section> tags
  • logo bar images should also be in an <ul> with <li> tags
  • The white logo should be inside the footer
  • The logos in the header/footer should be wrapped in an <a> linking to the home page
Last Updated: 9/19/2021, 11:44:56 AM