-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 2.28 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bin.fail</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<h1>bin.fail</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section class="hero">
<h2 id="typed-header"></h2>
<p>Things I Probably Shouldn't Have Found</p>
</section>
<section class="blog-posts">
<article class="post-card">
<h3>PDF Converter Apps And Their Risks</h3>
<p>Explore the latest vulnerabilities affecting Internet of Things devices and learn how to protect your
smart home...</p>
<a href="post.html" class="read-more">Read More</a>
</article>
<article class="post-card">
<h3>Hunting Down A DDOS Botnet</h3>
<p>Understanding the tactics, techniques, and procedures of modern APTs and strategies for detection and
mitigation...</p>
<a href="post.html" class="read-more">Read More</a>
</article>
<article class="post-card">
<h3>Mystery Kernel Driver</h3>
<p>Understanding the tactics, techniques, and procedures of modern APTs and strategies for detection and mitigation...</p>
<a href="post.html" class="read-more">Read More</a>
</article>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 bin.fail All rights reserved.</p>
<div class="social-links">
<a href="#" class="social-icon">Twitter</a>
<a href="#" class="social-icon">LinkedIn</a>
<a href="#" class="social-icon">GitHub</a>
</div>
</div>
</footer>
<script src="js/typing-animation.js"></script>
</body>
</html>