-
Notifications
You must be signed in to change notification settings - Fork 0
/
bottom.html
113 lines (109 loc) · 4.18 KB
/
bottom.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!doctype html>
<html lang="en">
<!-- Programmer: Thomas Boller -->
<!-- Songs -->
<!-- Date 11/11/2018 -->
<head>
<meta charset="UTF-8">
<title>Songs</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.css">
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.min.js"></script>
</head>
<body id="songs-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>
<a href="music.html">Music</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>Bottom of the River</h1>
<div class="aplayer">
<audio controls>
<source src="audio/bottom.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<div class="row2">
<div class="column2">
<h2>Bottom of the River</h2>
<h3>Songwriters:</h3>
<ul class="no_bullet">
<li><a href="eric.html">Eric Hölljes</a></li>
<li><a href="ian.html">Ian Hölljes</a></li>
</ul>
<h3>Song Information:</h3>
<p>One of Delta Rae’s best-performing and most well-known songs to date.</p>
<p>The lyrics illustrate the old, and often dangerous belief that some childhood illnesses were caused by possession by evil spirits or the devil,while the music video depicts a woman being led away in chains, perhaps evoking the Salem witch trials.</p>
<h3>Music Video</h3>
<video width="320" height="240" controls>
<source src="videos/bottom.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="column2">
<h2>Lyrics</h2>
<p>Hold my hand </p>
<p>Ooh, baby, it's a long way down to the bottom of the river</p>
<p>Hold my hand</p>
<p>Ooh, baby, it's a long way down, a long way down</p>
<p></p>
<p>If you get sleep or if you get none</p>
<p>The cock's gonna call in the morning, baby</p>
<p>Check the cupboard for your daddy's gun</p>
<p>Red sun rises like an early warning</p>
<p>The Lord's gonna come for your first born son</p>
<p>His hair's on fire and his heart is burning</p>
<p>So go to the river where the water runs</p>
<p>Wash him deep where the tides are turning</p>
<p></p>
<p>And if you fall</p>
<p>If you fall</p>
<p></p>
<p>Hold my hand</p>
<p>Ooh, baby, it's a long way down to the bottom of the river</p>
<p>Hold my hand</p>
<p>Ooh, baby, it's a long way down, a long way down</p>
<p></p>
<p>The wolves will chase you by the pale moonlight</p>
<p>Drunk and driven by a devil's hunger</p>
<p>Drive your son like a railroad spike</p>
<p>Into the water, let it pull him under</p>
<p>Don't you lift him, let him drown alive</p>
<p>The good Lord speaks like a rolling thunder</p>
<p>Let that fever make the water rise</p>
<p>And let the river run dry</p>
<p></p>
<p>And I said</p>
<p></p>
<p>Hold my hand</p>
<p>Ooh, baby, it's a long way down to the bottom of the river</p>
<p>Hold my hand</p>
<p>Ooh, baby, it's a long way down, a long way down</p>
<p></p>
<p>Hold my hand</p>
<p>Ooh, baby, it's a long way, a long long long way</p>
<p>Hold my hand</p>
<p>Ooh, baby, it's a long way down, a long way down </p>
</div>
</div>
</body>
</html>