-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (63 loc) · 1.85 KB
/
index.html
File metadata and controls
73 lines (63 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tool Directory</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #18191a;
color: #e4e6eb;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
margin: 0;
padding: 2rem;
}
.container {
background-color: #242526;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
width: 100%;
max-width: 600px;
text-align: center;
}
h1 {
margin-top: 0;
color: #e4e6eb;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 1rem;
}
a {
text-decoration: none;
color: #2d88ff;
font-size: 1.1rem;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Available Tools</h1>
<ul>
<li><a href="prefix_validator_v4.html">Prefix Validator (IPv4)</a></li>
<li><a href="prefix_validator_v6.html">Prefix Validator (IPv6)</a></li>
<li><a href="dns_checker.html">DNS Record Checker</a></li>
<li><a href="dns_lookup_all.html">Complete DNS Lookup</a></li>
<li><a href="mail_security_checker.html">Mail Security Checker</a></li>
<li><a href="port_scanner.html">Port Scanner</a></li>
</ul>
</div>
</body>
</html>