Three New Tags

<ol> Ordered List </ol>

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

  1. Turn right onto Market Street and drive 3 miles
  2. Turn left onto Pine Lane
  3. At the second Stop Sign turn right
  4. Third house on left

Code:

<ol> <li>Example item</li> </ol>

Source: w3schools


<img> Image Tag

The image tag is used to display pictures on a webpage. It does not need a closing tag.

Example Image

Code:

<img src="image.jpg" alt="Description">

Source: MDN Web Docs


<a> Anchor Tag

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


<table> Table Tag

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.