Skip to content

Latest commit

 

History

History

html

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

HTML

  • 2 space indentation.
  • A list of HTML coding conventions for this project can be found on Mark Otto’s website
  • 120 character soft limit

    • wrap text to 120 characters

    • wrap attributes to 120 by indenting two spaces and then aligning subsequent attributes with the first and then putting the enclosing '>' on a new line i.e.,

    • <a href="veryveryveryveryveryveryveryveryveryverylongurl.com"
         target="_blank" title="Title"
       >
        Anchor Text
      </a>
      

      rather than

      <a href="veryveryveryveryveryveryveryveryveryverylongurl.com" target="_blank" title="Title">
        Anchor Text
      </a>