<html> </html> are the outermost tags
<head> </head> — put information about the document including:
- <title> </title>
- <meta charset="utf-8">
- <meta name="description" content="what you want to pop up on google">
Body <body> </body>
- header: <h1(or 2, 3, 4, 5, 6)> words </h1>
- paragraph: <p> words </p>
- bold: <b> </b>
- italics: <i> </i>
- break (space out content): <br/>
- break with a horizontal line: <hr/>
- make text big: <big> words </big>
- make text small: <small> words </small>
- header: <header> words </header>
- main: <main> words </main>
Comment: <!— comment —>
Style elements:
- <p style="color: red; background-color: blue;"> words </p>