-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
40 lines (37 loc) · 1.06 KB
/
home.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Home</title>
<link rel ="stylesheet" href="./css/main.css">
<link rel ="stylesheet" href="./css/home.css">
<link rel="shortcut icon" href="./favicon.ico">
</head>
<body>
<div id="container">
<header id="header">
<nav class="menu">
<ul>
<li><a href="home.html" <b>Home</b></a></li>
<li><a href="about.html" <b>About</b></a></li>
<li><a href="foreword.html" <b>Foreword</b></a></li>
<li><a href="tracklist.html" <b>Tracklist</b></a></li>
<li><a href="photoshoot.html" <b>Photoshoot</b></a></li>
</ul>
</nav>
</header>
<content class="content">
<img src="./imgs/logo.jpg">
<audio controls><source src="audio/lover.mp3"></audio>
<h2>This website is about the Taylor Swift album, 'Lover'.</h2>
<h3>Darling, you're my, my, my, my Lover</h3>
</content>
</div>
<div class="member">
<a href="member.html" <b>JOIN!</b></a>
</div>
<footer>
Made by Jihye Lim
</footer>
</body>
</html>