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:
<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
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: