-
Notifications
You must be signed in to change notification settings - Fork 342
/
index.html
37 lines (36 loc) · 1.23 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>PlayList Project!</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous"
/>
<!-- Your CSS -->
<link type="text/css" rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1>My Playlist</h1>
<div class="form">
<p>Add a new song:</p>
<input placeholder="Song Title" class="title" />
<input placeholder="Artist Name" class="artist" />
<input placeholder="Image URL" class="image" />
<input placeholder="Song Link Address" class="link" />
<button class="add-input">Add</button>
</div>
<div class="display">
<div class="column images"></div>
<div class="column songs"></div>
<div class="column artists"></div>
<div class="column lengths"></div>
<div class="column links"></div>
</div>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Your Javascript -->
<script src="js/script.js"></script>
</body>
</html>