-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (73 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
86 lines (73 loc) · 1.42 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>D-view</title>
<style>
table, th, td {
border: 2px solid #e0e1dd;
border-collapse: collapse;
}
th, td {
background-color: #8e9dae;
}
table {
width: 100%;
}
</style>
</head>
<body>
<center>
<div >
<h1>D-VIEW</h1>
</div>
</center>
<center>
<table>
<tr>
<th>Name</th>
<td>sec-pc</td>
<th>IP</th>
<td>1.1.1.1</td>
</tr>
<tr>
<th>Uptime </th>
<th>Day</th>
<th>Hour</th>
<th>Min</th>
</tr>
<tr>
<th>UT</th>
<td>15</td>
<td>15</td>
<td>15</td>
</tr>
<tr>
<th>Loadavg</th>
<th>15min</th>
<th>10min</th>
<th>1min</th>
</tr>
<tr>
<th>LA</th>
<td>15</td>
<td>15</td>
<td>15</td>
</tr>
<tr>
<th>Process</th>
<td>15</td>
<th>Last Process</th>
<td>15</td>
</tr>
<tr>
<th>Temp</th>
<td>1233</td>
<th>Time</th>
<td>12:34</td>
</tr>
</table>
</center>
</body>
</html>