Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. 1. Lots of comments are good, but if you can, process them out before delivery.
  2. 2. Line 74: <a> - No href, missing closing tag
  3. 3. Line 215: Breadcumbs are typically lists inside of a <nav> tag.
  4. 4. Use of alt tags in images are good.
  5. 5. Lots of random onchange / onclick attributes. It's better practice and more maintainable to use event listeners.
  6. 6. Use of <hr> is okay. Not really needed. Typically represents a thematic break in a passage.
  7. 7. No need for self-closing tags in HTML5. They're fine to keep, but optional.
  8. 8. Definition list usage is good.
  9. 9. Line 173: `active` isn't a good ID name. Should be a class.
  10. 10. Line 698: <button> is generally prefered over input type=button, though if you need to support IE6, keep as is.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement