-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (27 loc) · 890 Bytes
/
index.html
File metadata and controls
31 lines (27 loc) · 890 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Playlist Helper</title>
<link rel="dns-prefetch" href="https://www.youtube.com/embed/">
<link rel="stylesheet" href="style.css">
<script src="script.js" type="text/javascript"></script>
<link rel="shortcut icon" href="media/favicon.ico" type="image/x-icon">
</head>
<body>
<div id='content'>
<h1>Song Suggestions<br>For <span id="em">Your</span> Playlist</h1>
<p id='text'>Don't know which songs to add to your playlist?<br><br>
Click below for songs we think you'll love!
</p>
</div>
<iframe id = player width="560" height="315"
src="" frameborder="0" allow="accelerometer;
clipboard-write; encrypted-media; gyroscope;
picture-in-picture" allowfullscreen>
</iframe>
<button>New<br>Song</button>
<div id='noSongs'>
Looks like we're all out of songs.<br>
</div>
</body>
</html>