-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
41 lines (38 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Simple Speed</title>
<link rel="stylesheet" type="text/css" href="css/screen.css">
<meta name="appsfuel_code" content="cd7e57a6873b748">
</head>
<body>
<div id="container">
<header>
<h1>Simple Speed</h1>
</header>
<section id="speeds">
<div id="download">
<div class="kbps">
<span class="value">0</span>
<span class="unit">kb/s</span>
<div class="progress"></div>
</div>
<div class="caption">Download</div>
</div>
<div id="upload" >
<div class="kbps">
<span class="value">0</span>
<span class="unit">kb/s</span>
<div class="progress"></div>
</div>
<div class="caption">Upload</div>
</div>
</section>
<button id="start">Start Test</button>
</div>
<script src="js/zepto.js"></script>
<script src="js/app.js"></script>
</body>
</html>