-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscoreboard.php
More file actions
152 lines (142 loc) · 3.73 KB
/
Copy pathscoreboard.php
File metadata and controls
152 lines (142 loc) · 3.73 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OH! TO BE PRINCESS!!</title>
<link rel='shortcut icon' href='img/favicon.ico' type='image/x-icon'/ >
<?php
include 'cssincludes.php';
include 'jsincludes.php';
?>
</head>
<body>
<!-- Start Top Bar -->
<?php include 'php/titlebar.php'; ?>
<!-- Navigation -->
<?php include 'php/topnav.php'; ?>
<!-- End Navigation -->
<!-- End Top Bar -->
<div class="row columns scoreboard">
<div class="columns">
<br>
<div class="row">
<div class="columns medium-3">
<a class="button">HI-SCORE</a>
<a class="button float-right">MY SCORE</a>
<h4>GAMES</h4>
<ul>
<li><a class="currentLink" href="#">ORIGIN OF PRINCESS</a></li>
<li><a href="#">OH! THE GALACTIC!!</a></li>
<li><a href="#">FOOD ATTACK PRINCESS</a></li>
<li><a href="#">PAKU PAKU PRINCESS</a></li>
</ul>
</div>
<div class="columns medium-8 medium-offset-1">
<div class="row">
<h3>HIGH SCORE</h3>
<table class="unstriped stacked">
<thead>
<tr>
<th>RANK</th>
<th>SCORE</th>
<th>NAME</th>
</tr>
</thead>
<tbody>
<tr>
<td>1ST
<td>599383</td>
<td>ABC</td>
</tr>
<tr>
<td>2ND</td>
<td>52111</td>
<td>BBQ</td>
</tr>
<tr>
<td>3RD</td>
<td>40082</td>
<td>OMG</td>
</tr>
<tr>
<td>4TH</td>
<td>37599</td>
<td>WTF</td>
</tr>
<tr>
<td>5TH</td>
<td>32001</td>
<td>LOL</td>
</tr>
<tr>
<td>6TH</td>
<td>25022</td>
<td>CAT</td>
</tr>
<tr>
<td>7TH</td>
<td>19926</td>
<td>ANT</td>
</tr>
<tr>
<td>8TH</td>
<td>15333</td>
<td>WAT</td>
</tr>
<tr>
<td>9TH</td>
<td>1654</td>
<td>HOW</td>
</tr>
<tr>
<td>10TH</td>
<td>33</td>
<td>WHY</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- Start Audio Player -->
<div class="row column">
<div class='player-wrapper'>
<div class='foundation-player no-1'>
<ul class='player menu simple noselect'>
<li class='player-button play'>
<em class='fi-music'></em>
</li>
<li class='player-button rewind'>
<em class='fi-refresh'></em>
</li>
<li class='player-progress'>
<div class='progress round' role='progressbar'>
<div class='progress-meter played'></div>
</div>
</li>
<li class='player-status time'>
<span class='elapsed'>00:00</span>
</li>
<li class='player-button volume'>
<em class='fi-volume'></em>
</li>
<li class="volume-slider">
<div id="audioSlider"></div>
</li>
</ul>
<audio id="audio1" src="audio/13_March_Of_Infinite_Pride.mp3" autoplay loop>
Your browser doesn't support this audio thingy. Get another one if you want to hear noises.
</audio>
</div>
<p><a href="https://archive.org/details/8bp030">'MARCH OF INFINITE PRIDE'</a> BY <a href="http://rugarandi.com/">RUGAR</a> IS PLAYING SONG! <a href="credits.php#scoreboard_license">SEE LICENSE</a>.</p>
</div>
</div>
<!-- End Audio Player -->
<!-- Start Footer -->
<?php include 'php/footer.php'; ?>
<!-- End Footer -->
</body>
</html>