-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (41 loc) · 1.25 KB
/
index.html
File metadata and controls
54 lines (41 loc) · 1.25 KB
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
<!doctype html>
<html>
<head>
<title>Spotify Queue</title>
<meta name="description" content="A spotify queue mini web app">
<meta name="keywords" content="spotify queue webapp">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="flex-container">
<h1>Spotify Queue</h1>
</header>
<div class="flex-container">
<section >
<h2>Current Queue</h2>
<ul>
<li class="songItem">
<img src="https://placehold.co/50" alt="">
Song 1
</li>
<li class="songItem">
<img src="https://placehold.co/50" alt="">
Song 2
</li>
<li class="songItem">
<img src="https://placehold.co/50" alt="">
Song 3
</li>
</ul>
</section>
<section >
<h2>Add to Queue</h2>
<form action="">
<label for="songName">Song Name</label>
<input id="songName" type="text" placeholder="Song name">
<button type="submit">Add to queue</button>
</form>
</section>
</div>
</body>
</html>