Three New Tags

< ul > Unordered List Tag < /ul >

The unordered list tag allows the user to create a list that doesn't follow any particular order or sequence. Each item uses the <li> tag nested within the <ul> tag.

Example

The code that produced the output above looks like this:

<h3> Example </h3>
<ul>
<li> Item 1 </li>
<li> Item 2 </li>
<li> Item 3 </li>
</ul>

I found this tag at w3schools.com


< abbr > Abbreviation Tag < /abbr >

The abbreviation tag allows the user define an abbreviation or acronym. The full definition will appear when the user hovers their mouse over the abbreviation.

Example

WW2 began in September 1939.

The code that produced the output above looks like this:

<h3> Example </h3>
<abbr title="World War 2">WW2 </abbr> began in September 1939.

I found this tag at w3schools.com


< address > Address Tag < /address >

The address tag allows the user define the contact information for the author of an article. The text is automatically italicized and the authors address is available in a hyperlink.

Example

This page was written by John Ciechoski.

The code that produced the output above looks like this:

<h3> Example </h3>
<address>This page was written by <a href="johnciechoski@example.com"> John Ciechoski </a> </address>

I found this tag at w3schools.com