-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
46 lines (44 loc) · 1.7 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="About HackTheBox Writeups.">
<title>About</title>
<!-- Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
main {
flex: 1;
}
</style>
</head>
<body class="bg-gray-900 text-white">
<!-- Navbar -->
<nav class="bg-gray-800 p-4">
<div class="container mx-auto">
<ul class="flex space-x-4">
<li><a href="index.html" class="text-white hover:text-gray-400">Home</a></li>
<li><a href="about.html" class="text-white hover:text-gray-400">About</a></li>
<li><a href="contact.html" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
</nav>
<!-- About Content -->
<main class="container mx-auto p-6">
<h1 class="text-4xl font-bold mb-4">About HackTheBox Writeups</h1>
<p class="mb-6">HackTheBox Writeups is a resource for aspiring and professional ethical hackers. It provides detailed walkthroughs of various HackTheBox challenges, helping you sharpen your skills in penetration testing, exploitation, and ethical hacking.</p>
</main>
<!-- Footer -->
<footer class="bg-gray-800 p-4 text-center">
<p>© 2024 Your Name. <a href="https://github.com/username" class="text-blue-400 hover:underline">GitHub</a></p>
</footer>
</body>
</html>