HTML Reference
<html> <head> <title>Things to remember</title> </head> <body> 1. Close all tags. 2. Always use lowercase. 3. Always quote attribute value. </body> </html> Heading <h1>Important headings</h1> <h6>Less important headings </h6> Paragraph <p>Paragraph tag</p> Line breaks <br /> <br></br> Text formatting <em>emphasis</em> <b>bold</b> <i>italics</i> <code>Computer code</code> <sub>Subscript</sub> <sup>Superscript</sup> Comment <!–comment goes here […]