HTML Basics
Content
Paragraph
Between these tags is where the majority of the text will appear.
<p></p>
Bold
Use these tags to embolden your text. They will still need to sit within paragraph tags.
<p><strong></strong></p>
Italics
Use these tags to make your text italic. They will still need to sit within paragraph tags.
<p><em></em></p>
Line Break
Use this tag to start a new line.
<br/>
Headings
Headings range from 1 - 6, with 1 being the largest and 6 the smallest. The number is relative to the number of the header.
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
Lists
Use these tags to create a list of content
Bullet List
<ul><li></li></ul>
Ordered List (1, 2, 3)
<ol><li></li></ol>
Tables
Use these tags to arrange content in a grid format.
(tr - these are tags to start a new row and td - these are tags for each cell)
<table>
<tr>
<td></td>
</tr>
</table>