You are on page 1of 2

Use of Audio on web pages using HTML5.

AudioPage.html :

<!DOCTYPE html>
<html>

<head>
<title>Single Audio Files Controls</title>

</head>

<body bgcolor="skyblue">
<h1 align="center">Single Audio Files with controls</h1>
<audio controls >
<source src="sample.mp3" type="audio/mp3">
</audio>
</body>

</html>

Output
Audio page using multiple source
AudioPage2:

<!DOCTYPE html>
<html>
<head>
<title>Multiple Audio Files Controls</title>
</head>
<body bgcolor="skyblue">
<h1 align="center">Multiple Audio Files with controls</h1>
<h3>List of sound files formats</h3>
<ol>
<li>mp3-audio/mpeg</li>
<li>ogg-audio/ogg</li>
</ol>
<audio controls autoplay>
<source src="sample1.mp3" type="audio/mp3">
<source src="sample3.ogg" type="audio/ogg">
</audio>
</body>
</html>
Output

You might also like