forked from richorama/AzureSpeedTest2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (58 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Azure Speed Test 2.0 - Measure the latenecy to your nearest Microsoft Azure Data Center">
<meta name="author" content="Richard Astbury">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<title>Azure Speed Test 2.0</title>
<link rel="icon" type="image/png" href="/favicon.png" />
<style>
.container {
/*width: 970px;*/
}
.icon {
width: 25px;
margin-right: 8px;
}
.results-table {
margin-bottom: 75px;
}
tr {
display: flex;
width: 100%;
}
td,
th {
flex: 1;
}
svg {
width: 200px;
height: 100%;
}
@media screen and (max-width:770px) {
.no-mobile {
display: none;
}
}
</style>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1 class="display-4">Azure Speed Test 2.0</h1>
<p class="lead">Measuring the latency from your web browser to the Blob Storage Service in each of the
Microsoft Azure Data Centers.</p>
</div>
</div>
<div class="container">
<div id="content">
Starting...
</div>
</div>
<script src="index.min.js"></script>
</body>
</html>