forked from itscodenation/flw1-playlist-18-19-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (39 loc) · 1.63 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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title> PlayList Project! </title>
<!-- Latest compiled and minified CSS -->
<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" />
<link href="https://fonts.googleapis.com/css?family=Gaegu|Gamja+Flower" rel="stylesheet">
</head>
<body>
<h1>My Playlist</h1>
<div id="form">
<p>Add a new song:</p>
<input placeholder="Song Name" id="song">
<input placeholder="Artist Name" id="artist">
<input placeholder="Song Length" id="length">
<input placeholder="Image URL" id="image">
<input placeholder="Song Embed Link Address" id="link">
<button id="add">Add</button>
</div>
<div id="cart">
<div class="column" id="images">
</div>
<div class="column" id="songs">
</div>
<div class="column" id="artists">
</div>
<div class="column" id="lengths">
</div>
<div class="column" id="links">
</div>
</div>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Your Javascript -->
<script src="js/script.js"></script>
</body>
</html>