-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
55 lines (55 loc) · 2.25 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - ppsky.dev</title>
<meta name="description" content="Read the latest articles on technology, ethical hacking, and deep web insights on ppsky.dev.">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Blog</h1>
<nav>
<ul>
<li><a href="index.html" id="home-link">Home</a></li>
<li><a href="blog.html" id="blog-link">Blog</a></li>
<li><a href="news.html" id="news-link">News</a></li>
<li><a href="tutorials.html" id="tutorials-link">Tutorials</a></li>
<li><a href="resources.html" id="resources-link">Resources</a></li>
<li><a href="contact.html" id="contact-link">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container">
<section id="articles">
<h2>Recent Articles</h2>
<!-- Article 1 -->
<article>
<h3>Top Security Apps for Android in 2024</h3>
<p>Comprehensive review of the most effective apps to protect your Android device...</p>
<a href="#">Read more</a>
</article>
<!-- Article 2 -->
<article>
<h3>Introduction to Kali Linux for Penetration Testing</h3>
<p>Learn how to set up and use Kali Linux for ethical penetration testing...</p>
<a href="#">Read more</a>
</article>
<!-- Add more articles here -->
</section>
</div>
</main>
<footer>
<div class="container">
<p>Follow us on Instagram: <a href="https://instagram.com/ppsky.dev">@ppsky.dev</a></p>
<p>Follow us on YouTube: <a href="https://www.youtube.com/@handletodizmantle" target="_blank">YouTube Channel</a></p>
<p>© 2024 ppsky.dev. All rights reserved.</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>