forked from KendallDoesCoding/duck-song
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (22 loc) · 994 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Duck Song Playlist!</title>
</head>
<body>
<h1 class="heading"> Duck Songs</h1>
<iframe id="embed" width="560" height="315" src="https://www.youtube.com/embed/ECmpUJdgm-g" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<!-- songs container, its called upon in the js file, thus this is empty. -->
<div class="songs">
</div>
<div class="container">
<div id="lyrics" class="button">
<a href="/lyrics" id="lyrics-btn" class="btn">Lyrics/Individual Song Page
</div>
</body>
<script type="text/javascript" src="song_embed.js"></script>
</html>