-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pemantauan Jaringan</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1><i class="fas fa-network-wired"></i> Pemantauan Jaringan</h1>
<div class="network-stats">
<h2>Status Jaringan</h2>
<p id="networkStatus"><i class="fas fa-spinner fa-spin"></i> Memuat...</p>
</div>
<div class="ping-test">
<h2><i class="fas fa-ping"></i> Ping Test</h2>
<button id="pingButton"><i class="fas fa-play-circle"></i> Lakukan Ping</button>
<p id="pingResult">Klik untuk melakukan ping.</p>
</div>
<div class="network-speed">
<h2><i class="fas fa-tachometer-alt"></i> Tes Kecepatan</h2>
<button id="speedTestButton"><i class="fas fa-play-circle"></i> Tes Kecepatan</button>
<div class="progress-container">
<div id="speedProgress" class="progress-bar"></div>
</div>
<p id="speedResult">Klik untuk tes kecepatan.</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>