Three New Tags

< button>Button< /button>

The Button Tag allows the user to add a clickable button. The button does nothing until an action is added to it.
example below:

The code that produced this output looks like this:

< button>Click me< /button>

I found this tag at w3schools.com


< font>Font< /font>

The font tag allows you to change the font, font size, and font color of your text.
Example:

This is the font tag

The code that produced this output looks like this:

< font face="Comic Sans ms" size="6" color="orange">This is the font tag< /font>

I found this tag at geeksforgeeks.org


< s>Strikethrough< /s>

The strikethough tag will put a line through text and strike it out.
Example:

This Text contains a strikethrough

The code that produced this output looks like this:

< p>< s>This Text contains a strikethrough< /s>< /p>

I found this tag at developer.mozilla.org