-
Notifications
You must be signed in to change notification settings - Fork 0
/
htbList.html
37 lines (37 loc) · 1.43 KB
/
htbList.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/screen.css">
<title>Frédéric Goossens | HTB</title>
</head>
<body>
<nav class="navSubPages">
<ul class="nav-links hidden">
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="htb.html">HackTheBox</a></li>
<li><a href="blogs.html">Blogposts</a></li>
<li><a href="useCases.html">Use Cases</a></li>
</ul>
<div class="hamburger-menu">
<i class="fas fa-bars"></i>
</div>
</nav>
<main>
<ul id="boxList"></ul>
</main>
<footer>
<p>note: Write-ups for active boxes are currently unavailable. These write-ups will be gradually released here once the respective boxes are retired.</p>
</footer>
<script src="assets/js/particles.min.js"></script>
<script src="assets/js/particlesConfig.js"></script>
<script src="assets/js/loadBoxes.js"></script>
<script src="assets/js/mobileNav.js"></script>
<div id="particles-js"></div>
</body>
</html>