Three New Tags

< audio > Audio < /audio >

The Audio tag is used to embed audio content on a webpage. This tag must be used along with the "controls", "src" and "type" attributes. The "controls" attribute is what will allow us to see the play button. The "src" is the source (location) of our mp3 file. Finally, the "type" attribute specify the type of audio the file is; a common value is "audio/mpeg". You can create output as follows:

The code that produced the output above looks like this:

<p>
  <audio controls>
    <source src="https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3 " type="audio/mpeg">
  </audio>
</p>

I found this tag at codegive.com

< form > Form < /form >

The Form tag is used to collect user input. This tag must be used along with the "action" and "method" attributes. The action is the page that this information will be sent to process it. The method is the way how this information will be sent. Common methods are "get" and "post". Note: The submit button will not work because we are not sending the data to any application server. You can create output as follows:

Please enter your age:

The code that produced the output above looks like this:

<p>
  <form method="post" action="process.jsp">
    <p>Please enter your age:
      <input type="number" name="age" id="age"/>
      <input type="submit" value="See your age + 30..."/>
    </p>
  </form>
</p>

I found this tag at w3schools.com

< b > Bring Attention To < /b >

The Bring Attention To tag is used to draw the reader's attention to the element's content. This tag must be used along with a "class" attribute. The value of this class attribute can vary. Formerly known as the Boldface element, you can create output as follows:

You must type a number in the form above.

The code that produced the output above looks like this:

<p>
  You must <b> class="keyword">type</b> a number in the form above.
</p>

I found this tag at developer.mozilla.org