-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 838 Bytes
/
index.html
File metadata and controls
27 lines (25 loc) · 838 Bytes
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
<!DOCTYPE html >
<html>
<head>
<title>Dreamhack Speedtest</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="css/base.css" />
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/script.js"></script>
<script src="js/cufon-yui.js" type="text/javascript"></script>
<script src="js/microgramma.font.js" type="text/javascript"></script>
<script type="text/javascript">
Cufon.replace('h1');
Cufon.replace('a');
</script>
</head>
<body>
<div id="container">
<div class="head"><h1>Dreamhack Speedtest</h1></div>
<a href="/100M">100M</a>
<a href="/1G">1G</a>
<a href="/10G">10G</a>
<a href="/100G">100G</a>
</div>
</body>
</html>