-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
41 lines (38 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - Osama's Archive</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1>Blog</h1>
<p>Read the latest articles and posts.</p>
</header>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="library.html">Library</a></li>
<li><a href="quiz.html">Test Yourself</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</nav>
<section class="blog-section">
<h2>Recent Posts</h2>
<ul>
<li><a href="blog/post1.html">Understanding Data Structures</a></li>
<li><a href="blog/post2.html">Introduction to Machine Learning</a></li>
<li><a href="blog/post3.html">Web Development Best Practices</a></li>
</ul>
</section>
<footer class="footer">
<p>© 2024 Osama's Archive - All rights reserved</p>
</footer>
<script src="script.js"></script>
</body>
</html>