-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeach Sunset with Audio.html
38 lines (30 loc) · 1.08 KB
/
Beach Sunset with Audio.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<!-- This website template was created by: Mayer Alvarez Vivanco on 2024-06-06 -->
<html lang="en">
<head>
<link rel="stylesheet" href="Styling Beach Sunset with Audio.css">
<title>Beach Sunset with Audio</title>
<meta charset="utf-8">
</head>
<body>
<div id="container">
<!-- Use the main area to add the main content of the webpage -->
<main>
<figure>
<figcaption>Time to take a vacation and enjoy a few beach sunsets.</figcaption>
<img src="sunset.jpg" alt="beach sunset">
</figure>
<audio controls autoplay loop>
<source src="apply_aud.mp3" type="audio/mpeg">
<source src="apply_aud.ogg" type="audio/ogg">
<source src="apply_aud.wav" type="audio/wav">
<p>Your browser does not support the audio element.</p>
</audio>
</main>
<!-- Use the footer area to add webpage footer content -->
<footer>
<p>Created by: Mayer Alvarez Vivanco</p>
</footer>
</div>
</body>
</html>