Errors in the SiteRootFolder

Jenna Rowe | ART 354 Web Design | January 28th, 2022



Individual


  1. Doctype isn’t declared first
  2. Line 26: should be </h1>
  3. Multiple headers
  4. Line 34: no paired header
  5. Line 37: mixed <em> + <i>
  6. Line 41: didn’t close properly, should be <b></b>
  7. Line 56 + 57: switched </h1> + </b>
  8. Line 62: switched </a> + </p>
  9. Line 81: <br} should be <br>
  10. Line 108: </h3> should be </p>
  11. Line 148 + 149: switched </footer> + </p>
  12. Line 152 + 154: switched </body> + </html>
  13. Missing </main>

Team


  1. Line 1: Doctype must be declared first
  2. Line 16: Title outside of <head>
  3. Line 26: </h2> should be </h1>
  4. Line 34: </head> after <main> can’t close before you open a tag
  5. Line 37: There isn’t a start for <i> in: ‘I went to school at the <em>University of Idaho</i>...’; There are two starts for <em>, one either needs to be removed or another close needs to be added: ‘I went to school at the <em>University of Idaho</i>, and <em>Art Center College of Design</i>, and <i>BYU-Idaho</em>.’; There isn’t a start for <i> in: ‘...and <em>Art Center College of Design</i>...’; There isn’t a close for </i> in: ‘...and <i>BYU-Idaho</em>.’
  6. Line 41: <b> and <b>, end tag should be </b>
  7. Line 56: <b> and <h1> not nested properly
  8. Line 62: <p> and <a> not nested properly
  9. Line 73: <h7> is not a real thing
  10. Line 81: <br}
  11. Line 108: </h3> should be </p> OR
  12. Line 108: Could add <h3> and switch the two
  13. Line 118: Summary </a> 2
  14. Line 125: <h7>
  15. Line 148: <p> and <footer> not nested correctly
  16. Line 152-154: </body> and </html> should be flipped
  17. Missing </main>
  18. The closing </head> should be before the header