-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (39 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Music Puzzle</title>
<link href="favicon.ico" rel="icon" type="image/ico" />
<link rel="stylesheet" href="style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<p class="rule">Reorder the blocks to play the track in the right order</p>
<div id="title" class='space'></div>
<div class='space'>
<ul id="board">
<p>Which music do you want to play with?</p>
<form id="artist"><input name="q"></form>
</ul>
</div>
<div class='space buttons'>
<button id='listen' disabled>play</button>
<button id='pause'>pause</button>
<button id='stop'>stop</button>
</div>
<div class='credits'>
Music by <a href="http://www.deezer.com">Deezer</a>.
Fork me on <a href="https://github.com/alicelieutier/musicpuzzle">Github</a>.
</div>
<script src="jquery/jquery-1.9.1.js"></script>
<script src="jquery/ui/jquery.ui.core.js"></script>
<script src="jquery/ui/jquery.ui.widget.js"></script>
<script src="jquery/ui/jquery.ui.mouse.js"></script>
<script src="jquery/ui/jquery.ui.sortable.js"></script>
<script src="punch.js"></script>
<script src="musicpuzzle.js"></script>
<!-- DEEZER API -->
<div id="dz-root"></div>
<script src="http://cdn-files.deezer.com/js/min/dz.js"></script>
</body>
</html>