Three New Tage

<time>Time</time>

The time tag allows you to enter a specific time. The time tag allows the computer to read the time as time instead of a random string of numbers

Example

It is as i am typing this!

The code that produced the output above looks like this:

<p>It is <time>2:44</time> as i am typing this!</p>

I found this tag at W3 Schools.com.


<button>Button<button>

Button tag brings a clickable button into the webpage. Super usefull for graphical interfaces.

Example

The code that produced the output above looks like this:

<button>Try me!<button>

I found this tag at SheCodes.io.


<strong>Strong<strong>

The strong tag is used to create a sense of importance (basically bolding the output). An example would be a rule sheet and most important one stands out.

Example

How to play cornhole

1. Throw the bag in the hole

2. Dont let your opponent score

3. Have fun!

The code that produced the output above looks like this:

<p> How to play cornhole <br><br> 1. Throw the bag in the hole <br><br> 2. Dont let your opponent score <br><br><strong> 3. Have fun! </strong></p>

I found this tag at developer.mozilla.org.