forked from possan/webapi-player-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path09.html
More file actions
75 lines (68 loc) · 2.53 KB
/
09.html
File metadata and controls
75 lines (68 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
<html ng-app="PlayerApp">
<head>
<title>Your Score | Welcome to Mix-Up</title>
<link rel="stylesheet" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,700' rel='stylesheet' type='text/css'>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="app.js"></script>
<script src="services/auth.js"></script>
<script src="services/api.js"></script>
<script src="services/playback.js"></script>
<script src="services/playqueue.js"></script>
<script src="directives/playlistcover.js"></script>
<script src="directives/responsivecover.js"></script>
<script src="directives/contextmenu.js"></script>
<script src="directives/focusme.js"></script>
<script src="filters/displaytime.js"></script>
<script src="filters/timeago.js"></script>
<script src="controllers/player.js"></script>
<script src="controllers/login.js"></script>
<script src="controllers/playlist.js"></script>
<script src="controllers/home.js"></script>
<script src="controllers/artist.js"></script>
<script src="controllers/album.js"></script>
<script src="controllers/user.js"></script>
<script src="controllers/usertracks.js"></script>
<script src="controllers/playqueue.js"></script>
<script src="controllers/searchresults.js"></script>
<script src="controllers/browse.js"></script>
<script src="controllers/browsecategory.js"></script>
</head>
<body>
<div></div>
<h3 class="center">
You scored
</h3>
<h1 class="center">4</h1>
<div class="center">
<h3 class="center">Here are the correct answers:</h3>
</div>
<div class="center">
<a href="" class="button big green">1. Rihanna — Work ​▶</a>
</div>
<div class="center">
<a href="" class="button big green">2. Go — Chemical Brothers ​▶</a>
</div>
<div class="center">
<a href="" class="button big green">3. Panda — Desiigner ​▶</a>
</div>
<div class="center">
<a href="" class="button big green">4. I'd Rather Go Blind — Etta James ​▶</a>
</div>
<div class="center">
<a href="" class="button big green">5. My Humps — The Black Eyed Peas ​▶</a>
</div>
<br /><br /><br />
<div class="center">
<h3>Follow this playlist</h3>
<a href="" class="button big green">
<h2>Sean's Mix-Up 21 April 2016</h2>
</a>
</div>
<br /><br /><br />
<div class="center">
<a href="" class="button big green">Share</a>
</div>
</body>
</html>