Three New Tags

< abbr > Abbreviation < /abbr>

This tag defines an Abbreviation or an acronym. Each item is contained in an opening and closing < abbr > tag. Which the abbreviates the word to whatever you want please note the example below :

HTML

The code that produced the output above looks like this

< abbr title="Hypertext Markup Language">HTML< /abbr>

I found this tag at w3schools.com

Three New Tags

< acronym > acronym< /acronym >

The acronym tag in HTML is used to define the acronym that gives useful information to browsers, translation systems, and search engines It is a semantic tag and does not not really do anything for the end user. Please note example below:

LOL, That's so funny!

The code that produced the output above looks like this

< acronym>LOL< /acronym >, That's so funny!

I found this tag at geeksforgeeks.org

Three New Tags

< progress > progress < /progress >

the progress tag element displays an indicator showing the completion progress of a task, typically displayed as a progress bar. Please note example below:

Downloading the file progress:

The code that produced the outcome abovelooks like this:

< progress value="50" max="100" >

I found this at developer.mozilla.org