-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
29 lines (29 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
<html>
<head>
<title>Huseyin-Cinar • Speedtest Website</title>
<meta name="author" content="Huseyin Cinar">
<meta name="theme-color" content="limegreen">
<meta content="Only using html, css and js making a easy speedtest website." name="description">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, init ial-scale=1">
<link rel="stylesheet" href="./css/speedtest.css">
<script src="./js/speedtest.js"></script>
<style>
body,html{height:100%;line-height:1.8;}
</style>
</head>
<body>
<CENTER><div id="progress">Make sure you have an internet connection.</div></CENTER>
<div id="stats" class="modal" style="width:100%;height:100%;display:none;">
<div class="container">
<h1 style="text-align:center;">Statistics:</h1>
<br><br>
<h2 id="ilk-h2">Internet speed (bps): </h2>
<h2 id="iki-h2">Internet speed (Kbps): </h2>
<h2 id="son-h2">İInternet speed (Mbps): </h2>
</div>
<br><hr><br>
<button id="button-close" type="button" onclick="document.getElementById('stats').style.display='none'">Close</button>
</div>
</body>
</html>