Three New Tags

< ul > Unordered List < /ul >

This Unordered List tag allows a user to create a list of items with bullets instead of numbers. Each item is contained in an opening and closing <li> tag.

Grocery List

This is how the first tag looks like:

<p><b>Grocery List</b></p>
<ul>
  <li>Milk</li>
  <li>Eggs</li>
  <li>Bread</li>
  <li>Apples</li>
</ul>

I found this tag at w3schools.com


< details > Details Tag < /details >

The details tag creates an interactive widget that the user can open and close. It is very useful for hiding content like "Spoilers" or extra technical data until a user clicks on it.

Click here to see the secret message!

chickenbutt

This is how the second tag looks like::

<details>
  <summary>Click here to see the secret message!</summary>
  <p>chickenbutt</p>
</details>

I found this tag at w3schools.com


< mark > Mark Tag < /mark >

The mark tag is for highlighting text. Usually most browsers will give the text a bright yellow background to make it stand out from the rest of the paragraph.

Its important to study your HTML every day if u wanna pass the class.

This is how the third tag looks like:

<p>It is important to <mark>study your HTML every day</mark> to pass the class.</p>

I found this tag at w3schools.com