blob: 7bb1c6187164cf0485d50b62f2eae5c9aef5773e (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dashboard</title>
<style>
html {
height: 100%;
}
body {
font-size: 10px;
font-family: monospace;
height: 100%;
margin: 0;
display: flex;
align-items: center;
}
body > * {
width: 100%;
height: 100%;
}
iframe {
width: 100%;
height: 100%;
display: block;
border: 0;
top: 0;
position: absolute;
}
td {
position: relative;
}
</style>
<script src="sorttable.js"></script>
</head>
<body>
<table>
<tr><td><iframe src="tls.html"></iframe></td></tr>
<tr><td><iframe src="crtsh.html"></iframe></td></tr>
<tr><td><iframe src="diff.html"></iframe></td></tr>
</table>
</body>
</html>
|