-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusic.html
67 lines (61 loc) · 1.97 KB
/
music.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html lang="en">
<!-- Programmer: Thomas Boller -->
<!-- Main Page -->
<!-- Date 11/11/2018 -->
<head>
<meta charset="UTF-8" />
<title>Delta Rae</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/global.css">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Sedgwick+Ave+Display" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body id="index-body">
<div class="topnav">
<div class="dropdown">
<a href="#menu" class="dropbtn"><img src="images/menu.png"/></a>
<div class="dropdown-content">
<!-- these links are absolute to allow the professor to easily open files and view the site. they would be relational for deployment -->
<a href="about.html">About</a>
<a href="social_media.html">Social Media</a>
<a href="concerts.html">Concerts</a>
</div>
</div>
<div class="nav-container">
<!--This div is a container for anything that might go in the nav bar -->
</div>
<a href="index.html">
<img src="images/delta_button.png" />
</a>
<a onclick="history.back()">
<img src="images/back.png" />
</a>
</div>
<h1>Albums</h1>
<h2>Carry the Fire</h2>
<div class="table">
<ol>
<li><a href="holding.html">Holding On to Good</a></li>
<li>Is There Anyone Out There</li>
<li><a href="morning.html">Morning Comes</a></li>
<li>If I Loved You</li>
<li><a href="bottom.html">Bottom of the River</a></li>
<li>Country House</li>
<li>Surrounded</li>
<li>Dance in the Graveyards</li>
<li>Fire</li>
<li>Forgive the Children We Once Were</li>
<li>Unlike Any Other</li>
<li>Hey, Hey, Hey</li>
</ol>
</div>
<h1>Singles</h1>
<div class="table">
<ol>
<li><a href="dream.html">Do You Ever Dream</a></li>
</ol>
</div>
</body>
</html>