Spacing
- </br> – line break – used to move text to the next line.
- <p>Your text</p> – paragraph – used to create a paragraph space. Wrapping your text with a paragraph tag will give you a line break after your paragraph.
List
-
Bullet points:
The code
<ul>
<li>Your item</li>
<li>Your item</li>
</ul>The results:
- Your item
- Your item
-
Numbered list:
The code
<ol>
<li>Your item</li>
<li>Your item</li>
</ol>The results:
- Your item
- Your item