The Ordered List tag allows a user to make a list of items. Each item is contained in an opening and closing <li> tag. The numbers appear automatically.
Directions
Code:
<ol>
<li>Example item</li>
</ol>
Source: w3schools
The image tag is used to display pictures on a webpage. It does not need a closing tag.
Code:
<img src="image.jpg" alt="Description">
Source: MDN Web Docs
The anchor tag is used to create hyperlinks that take users to another page or website.
Visit Google
Code:
<a href="https://example.com">Link Text</a>
Source: w3schools
The table tag is used to create tables with rows and columns.
| Name | Age |
|---|---|
| Jake | 20 |
Code:
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Jake</td>
<td>20</td>
</tr>
</table>
Source: MDN Web Docs
This page demonstrates four HTML tags: ordered list, image, anchor, and table. Each tag includes an example and source.