Three New Tags

<button> Button </button>

The button tag allows users to create a clickable button on their page. It has numerous attributes to customize the function of the button further.

Example

The code that was used looks like this:

<button onclick="alert('Hello')">Click me!</button>

I found this tag at w3schools.com


<blockquote> Blockquote </blockquote>

The blockquote tag let's users properly cite different quotes and references by giving tools that can help structure and format, making it more readable.

Example

1. When a distinguished but elderly scientist states that something is possible, he is almost certainly right. When he states that something is impossible, he is very probably wrong.
2. The only way of discovering the limits of the possible is to venture a little way past them into the impossible.
3. Any sufficiently advanced technology is indistinguishable from magic.

The code that was used looks like this:

<blockquote cite="Clarke's three laws"> 1. When a distinguished but elderly scientist states that something is possible, he is almost certainly right. When he states that something is impossible, he is very probably wrong.<br> 2. The only way of discovering the limits of the possible is to venture a little way past them into the impossible.<br> 3. Any sufficiently advanced technology is indistinguishable from magic.</blockquote>

I found this tag at sitepoint.com


<ul> Unordered List </ul>

The unordered list tag let's users create a list of items that have no particular order to them. each item is bulleted and can have nested elements using the <li> </li> tags.

Example

The code that was used looks like this:

<ul>
<li>Square</li>
<li>Triangle</li>
<li>Circle</li>
<ul>
<li>Wheels</li>
<li>Baseballs</li>
</ul>
</ul>

I found this tag at developer.mozilla.org