-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (70 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Music History First Assignment</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container">
</div>
<!--Top Box-->
<fieldset class = "topBox">
<label>View Music |</label>
<a href = "http://www.google.com">Add Music</a>
<label> | </label>
<a href = "http://www.google.com">Profile</a>
</fieldset>
<!--Left Box-->
<div class = "leftBox">
<fieldset>
<label>Song length:</label>
<input type = "range">
</fieldset>
<fieldset>
<p><label>Artist</label></p>
<select name = "artist">
<p><option value = "Avril Lavigne">Avril Lavigne</option></p>
</select>
</fieldset>
<fieldset>
<p><label>Album</label></p>
<select>
<p><option value = "Let Me Go">Let Me Go</option></p>
</select>
</fieldset>
<!--Genre Left Options-->
<fieldset>
<p><label>Genre:</label></p>
<div class = "musicGenreL">
<p><input type = "checkbox">Rock</p>
<p><input type = "checkbox">Pop</p>
<p><input type = "checkbox">Blues</p>
</div>
<!--Genre Right Options-->
<div class = "musicGenreR">
<p><input type = "checkbox">Classical</p>
<p><input type = "checkbox">Jazz</p>
<p><input type = "checkbox">HipHop</p>
</div>
</fieldset>
<!--Filter Button-->
<input type="submit" id="ButtonPosition" value="Filter">
</div>
<!--Right Box-->
<fieldset class = "rightBox">
<p class = "SongName">Songs</p>
<div id="listOfSongs">
<p>Song name | Artist name </p>
</div>
<!--Classes taken out
<p class = "SongName">Song Name</p>
<p>Artist name | Album name | Genre</p>
<p class = "SongName">Song Name</p>
<p>Artist name | Album name | Genre</p>
<p class = "SongName">Song Name</p>
-->
</fieldset>
<script src="version2.js"></script>
</body>
</html>