forked from itscodenation/flw1-playlist-18-19-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (56 loc) · 2.22 KB
/
index.html
File metadata and controls
62 lines (56 loc) · 2.22 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
55
56
57
58
59
60
61
62
<!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=Roboto" rel="stylesheet">
</head>
<body>
<div id="form">
<h1 class="text">Playlist</h1>
<p class="text" id="text">Add a new song:</p>
<div class="inputDivs" id="inputOne">
<input class="songInput" placeholder="Song Name" id="song">
</div>
<br>
<div class="inputDivs" id="inputTwo">
<input class="songInput" placeholder="Artist Name" id="artist">
</div>
<br>
<div class="inputDivs" id="inputThree">
<input class="songInput" placeholder="Song Length" id="length">
</div>
<br>
<div class="inputDivs" id="inputFour">
<input class="songInput" placeholder="Image URL" id="image">
</div>
<br>
<div class="inputDivs" id="inputFive">
<input class="songInput" placeholder="Song(Youtube) Link Address" id="link">
</div>
<br>
<div class="buttonDiv">
<button id="add">Add</button>
</div>
</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>