Computer scienceFrontendHTMLMedia files

Tag Embed

Audio file embed

Report a typo

Create an HTML page that embeds an audio file. The audio file should be this MP3 file: "http://creativesounddesign.com/sound/mp3_14/Bird_Robin_Chirps_Angry.mp3", located in the same directory as the HTML file. Set the width of the embedded audio player to 1100 pixels and the height to 250 pixels.

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Embed an audio file</title>
</head>
<body>
</body>
</html>

Completed 1 of 2
Embed an audio file with relevant attributes as mentioned in description.
The code is valid.
___

Create a free account to access the full topic