Horje

How to Use <audio> Tag Instead of HTML <applet> Tag

If you want to embed audio, use the <audio> tag:

index.html
Example: HTML
<audio controls>
  <source src="https://www.w3schools.com/tags/horse.ogg" type="audio/ogg">
  <source src="https://www.w3schools.com/tags/horse.ogg" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>

Output should be:

How to Use <audio> Tag Instead of HTML <applet> Tag




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin