Three New Tags


< mark > The Mark Element < /mark >

Highlight the background of the text. Please note the example below:

HTML is great.

The code that produced the output looks like this:

<p><mark>HTML</mark>is great.</p>

I found this tag at html.com




< time > The Time Element < /time >

HTML also provides the time element for marking up times and dates in a machine-readable format. For example:

The code that produced the output looks like this:

<p><time datetime="2016-01-20">20 January 2016</time></p>

I found this tag at mozilla.org




< form > The Forms Element < /form >

An HTML form is used to collect user input. The user input is most often sent to a server for processing. Please note the example below:

Enter your first and last name




The code that produced the output looks like this:

<p><form>
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname" value="">
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname" value="">
</form></p>

I found this tag at w3schools.com