Christ Is Alive Ministry Learning Code for God
<audio>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>
<audio controls autoplay>
<source src="pferd_whinnert.ogg" type="audio/ogg">
<source src="pferd_whinnert.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>
<audio> Results
<source>
- The <source> tag is used to specify multiple media resources for media elements, such as <video>, <audio> and <picture>
- The<source> tag allows you to specify alternative video/audio/image files which the browser may choose from, based on browser support or viewport width. The browser will choose the first <source> it supports.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>The source element</h1>
<p>Click on the play button to play a sound:</p>
<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>
</body>
</html>
Results
Click on the play button to play a sound: