| <body> |
Body |
The body element represents the content of an HTML document. |
| <p> |
Paragraph |
The paragraph element contains and displays a block of text. |
| <h1>-<h6> |
Heading |
HTML can use six different levels of heading elements. |
| <img> |
Image |
HTML image elements embed images in documents. |
| <video> |
Video |
The video element embeds a media player for video playback. |
| <ol> |
Ordered List |
The ordered list element creates a list of items in sequential
order.
|
| <ul> |
Unordered List |
The unordered list element is used to create a list of items in no
particular order.
|
| <li> |
List Item |
The list item element create list items inside ordered lists and
unordered lists.
|
| <div> |
Division |
Division elements can contain flow content such as headings,
paragraphs, links, images, etc.
|
| <em> |
Emphasis Element |
The emphasis element emphasizes text and browsers will usually
italicize the emphasized text by default.
|
| <br> |
Line Break |
The line break element will create a line break in text and is
especially useful where a division of text is required
|
| <span> |
Span |
The span element is an inline container for text and can be used to
group text for styling purposes.
|
| <strong> |
Strong |
The strong element highlights important, serious, or urgent text.
|