-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (37 loc) · 1.07 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ocean Waves</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- import the webpage's stylesheets -->
<link rel="stylesheet" href="style.css" />
<!-- link the webpage's JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<header>
<h1>Welcome to Ocean Waves!</h1>
</header>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="soundscapes.html">Soundscapes</a>
</li>
</ul>
</nav>
<main>
<img id="wave"src="assets/Wave (1).jpg" alt="Image of Deep Blue Ocean Waves">
<p class="free">Dive into a world of free soundscapes today!</p>
<p>Images are from</p>
<a href class="pix"="https://pixabay.com">Pixabay.</a>
</main>
</body>
</html>