-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
94 lines (71 loc) · 2.12 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
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Itunes Music API</title>
<link rel="stylesheet" href="styles.css">
</head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- <header>
</header> -->
<div class="box">
<form>
<!-- <audio id="audio_preview" src="http://a632.phobos.apple.com/us/r1000/103/Music/3c/df/1f/mzm.aqrqqzxn.aac.p.m4a"></audio> -->
<!-- <center> -->
<div class="title">
<center><p>Itunes Shuffle</p></center>
</div>
<div class="score">
<center><p>Score</p></center>
<center><p class="scoreUp"></p></center>
</div>
<div class="response">
<center>
<p>
<label for="songSelect"><p>Enter the name of artist, <!-- , album, or song name, -->then press ENTER.</p></label>
</p>
<p>
<input type="text" id="songSelect" value="">
<h2></h2>
</p>
</center>
</div>
<div class="song">
<center>
<audio id="audio_preview" src="">
<!-- <source src="" type="audio/ogg">
<source src="" type="audio/mpeg">
Your browser does not support the audio tag. -->
</audio>
</center>
</div>
<div class="btn-group btn-group-justified" role="group" aria-label="...">
<center>
<button type="button" class="btn btn-default fa fa-2x fa-play-circle play"></button>
<button type="button" class="btn btn-default" id="next-bt">Next</button>
</center>
</div>
<!-- <div class="next">
<center>
<p>Next</p>
</center>
</div>
<div class="start">
<center>
<p>Start Button</p>
</center>
</div> -->
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src = "http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="script.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<body>
</body>
</html>