-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·55 lines (52 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Dashboard</title>
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/latest/normalize.css">
<link rel="stylesheet" href="app.css">
<!-- Icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
</head>
<body>
<!-- For "Back to Top" because I was too lazy to use JS -->
<a name="top"></a>
<div class="nav">
<div class="container">
<branding>Packet Collection Dashboard</branding>
<a href="#">
<i class="fas fa-home"></i>
Main
</a>
<a href="#">
<i class="far fa-gear"></i>
System Status
</a>
<a href="#">
<i class="fas fa-info-circle"></i>
Legacy Stats
</a>
</div>
<!-- Hug to the right -->
<div style="float: right">
<a>CPU Usage: <span style="color: green">35%</span></a>
</div>
</div>
<main>
<div class="container">
<h1>Hosts Tracked</h1>
<table style="width: 40%">
<th style="width: 5%">Rank</th>
<th style="width: 50%">Host</th>
<th style="width: 20%">Total</th>
<th style="width: 25%">Percent</th>
</table>
</div>
</main>
<footer>
<p>
Prinicipal site design by Austin Mayes
</p>
</footer>
</body>
</html>