KnowledgeBoat Logo
|

Computer Applications

How do you embed audio in an HTML page?

  1. <audio src = "audio.mp3">
  2. <sound src = "audio.mp3">
  3. <embed src = "audio.mp3">
  4. <mp3 src = "audio.mp3">

HTML Advanced Features

1 Like

Answer

<audio src = "audio.mp3">

Reason — We can embed audio in an HTML page by using <audio> tag in the following way:

<audio src = "audio.mp3>

Answered By

3 Likes


Related Questions