16 lines
472 B
HTML
16 lines
472 B
HTML
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Speedtest | beta</title>
|
|
<script src="service.js"></script>
|
|
</head>
|
|
<body>
|
|
<p>Ping: <span id="ping"></span></p>
|
|
<p>Download: <span id="down"></span></p>
|
|
<p>Upload: <span id="up"></span></p>
|
|
<p>Status: <span id="status"></span></p>
|
|
<p><input type="checkbox" id="multi-signal" checked="checked">check if 5 connection together</p>
|
|
<button onclick="startTest()" id="button">Start Test</button>
|
|
</body>
|
|
</html>
|