Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Challenge: Using Audio Elements | Images and Media
HTML Essentials

book
Challenge: Using Audio Elements

Task

Create an HTML document that embeds two nature audio clips. Add appropriate attributes to enable controls.

  • The first audio file URL is https://content-media-cdn.codefinity.com/courses/392f24ac-0126-4c34-a28a-f2f26d12196b/section-3/forest-with-small-river-birds-and-nature-field.mp3.

  • The second audio file URL is https://content-media-cdn.codefinity.com/courses/392f24ac-0126-4c34-a28a-f2f26d12196b/section-3/evening-birds-singing-in-spring-background-sounds-of-nature.mp3.

html

index.html

copy
<!DOCTYPE html>
<html>
<head>
<title>Nature Sounds</title>
<meta charset="UTF-8" />
</head>
<body>
<h1>Nature Sounds</h1>
<ul>
<li>
<h2>Evening birds signing in spring.</h2>
<!-- Step 1: Embed the audio clip -->
<audio _____>
<source
src="_____"
type="audio/mpeg"
/>
Your browser does not support the audio element.
</audio>
</li>
<li>
<h2>A forest filled with small singing birds.</h2>
<!-- Step 1: Embed the audio clip -->
<_____ _____>
<source
src="_____"
type="audio/mpeg"
/>
Your browser does not support the audio element.
</_____>
</li>
</ul>
</body>
</html>

Hint

Step 1: Use the <audio> tag to embed the audio clip. Add the controls attribute to enable standard audio controls. Inside the <source> tag, use the src attribute to specify the URLs of the MP3 audio files.

html

index.html

copy
<!DOCTYPE html>
<html>
<head>
<title>Nature Sounds</title>
<meta charset="UTF-8" />
</head>
<body>
<h1>Nature Sounds</h1>
<ul>
<li>
<h2>Evening birds signing in spring.</h2>
<!-- Step 1: Embed the audio clip -->
<audio controls>
<source
src="https://codefinity-content-media-v2.s3.eu-west-1.amazonaws.com/courses/392f24ac-0126-4c34-a28a-f2f26d12196b/section-3/forest-with-small-river-birds-and-nature-field.mp3"
type="audio/mpeg"
/>
Your browser does not support the audio element.
</audio>
</li>
<li>
<h2>A forest filled with small singing birds.</h2>
<!-- Step 1: Embed the audio clip -->
<audio controls>
<source
src="https://codefinity-content-media-v2.s3.eu-west-1.amazonaws.com/courses/392f24ac-0126-4c34-a28a-f2f26d12196b/section-3/evening-birds-singing-in-spring-background-sounds-of-nature.mp3"
type="audio/mpeg"
/>
Your browser does not support the audio element.
</audio>
</li>
</ul>
</body>
</html>

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 3. Kapitel 4

Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

We use cookies to make your experience better!
some-alt