# Most useful HTML 

HTML Paragraphs (don't forget the end tag!)

    <p>This is a paragraph</p>
    <p>This is another paragraph</p>

HTML Line Breaks

Use the `<br />` tag if you want a line break (a new line) without starting a new paragraph:

    <p>This is<br />a para<br />graph with line breaks</p>

Some formatting

    <em>This is emphasis</em>
    
    <b>This text is bold</b>
    
    <big>This text is big</big>
    
    <i>This text is italic</i>
    
    <code>This is computer output</code>
    
    This is <sub>subscript</sub> and <sup>superscript</sup>
