Audio Player

Audio Player

Easy HTML Media & Embeds 19 views
Explanation Complexity

Problem Statement

Embed an audio file 'intro.mp3' with controls for meetcode.

Input Format

No input.

Output Format

Print the HTML code.

Constraints

Use with controls.

Input / Output Format

Input Format
No input.
Output Format
Print the HTML code.
Constraints
Use with controls.

Examples

Input:
Output:
(HTML code)

Example Solution (Public)

HTML
<!doctype html>
<html lang='en'>
<head>
  <meta charset='utf-8'>\
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <title>meetcode</title>
</head>
<body>
  <audio controls src='intro.mp3'></audio>
</body>
</html>

Official Solution Code

<!doctype html>
<html lang='en'>
<head>
  <meta charset='utf-8'>\
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <title>meetcode</title>
</head>
<body>
  <audio controls src='intro.mp3'></audio>
</body>
</html>
Please login to submit solutions.
Editor
Output

                                        
Please login to submit solutions.