Three New Tags

< b > Text Formatting < /b>

The Text Formatting tag allows a user to make the important words in a document look good. Each item contains a bold, important, italic, emphasized, marked, smaller, deleted, inserted, subscript, and superscript text. Here are some examples down below:

This text is bold

This text is italic

This is subscript and superscript

The code that is produced for this tag is this:

< b > This text is bold < /b> < i > This text is italic < /i> This is < sub> subscript < /sub> and < sup> superscript < /sup>

I found this tag at w3schools.com


< mark > Highlight Text < /mark>

The Highlight Text tag allows a user to highlight any important things in an document to let that person know what is important for that document. Each item is contained an opening and closing < mark> tag. Here is an example below:

Hello!

The code that is produced for this tag is this:

< mark > Hello! < /mark>

I found this tag at developer.mozilla.org


< label > Labels < /label>

The Labels tag allows users to fill out whatever the label provides you to do. Each item is contained an opening and closing < label> tag. Here is an example below:

The code that is produced for this tag is this:

< label for = \ "name\" > Name: < /label>

I found this tag at htmltags.help