Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Audio

The HTML <audio> Element

To play an audio file using HTML, utilize the <audio> element:

Example

<audio controls>
  <source src=”horse.ogg” type=”audio/ogg”>
  <source src=”horse.mp3″ type=”audio/mpeg”>
Your browser does not support the audio element.
</audio>

HTML Audio – How It Works

The controls attribute adds audio controls such as play, pause, and volume.

The <source> element allows specification of alternative audio files that browsers can choose from, with the first recognized format being used.

Text between the <audio> and </audio> tags appears only in browsers that do not support the <audio> element.