code comment will not not be displayed on the page
<!-- -->
Starts code for each page. Indicates that it's written with HTML 5.
<!DOCTYPE html>
this is a paragraph.
defines a section of the page mostly so that you can apply formatting to the entire block with CSS
<div>block of text </div>
this for a line break. There is no closing "</br>"tag.
<br>
emphasis which is really just italics
<em>block of text </em>
block of text
Used to change a piece of text within a longer piece of text. Supports attributes such as "style".
This is<span style="color:purple">purple</span>text.
This is purple text.
Ordered Lists (with numbered items), Unordered Lists(without numbered items) and List Items
An ordered list:
An unordered list:
Tag | Definition | Code Sample | Result |
---|---|---|---|
Strong | bold text | <strong>Bold</strong> | Bold |