-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
53 lines (52 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - Hariom Dixit</title>
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/fontawesome.min.css">
</head>
<body>
<header>
<div class="header-container">
<h1><a href="index.html" class="title">Hariom Dixit</a></h1>
<nav id="navbar">
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#blog">Blog</a></li>
<li><a href="index.html#projects">Projects</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
<div class="header-right">
<button class="menu-toggle" onclick="toggleMenu()">
<i class="fas fa-bars"></i>
</button>
<button id="theme-toggle">
<i class="fas fa-moon"></i>
</button>
<div class="social-icons">
<a href="https://github.com/h-dixit">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://bsky.app/profile/hariomdixit.dev">
<i class="fa-brands fa-bluesky"></i>
</a>
</div>
</div>
</div>
</header>
<main>
<section id="blog">
<h1>Blog</h1>
<p>Coming soon...</p>
</section>
</main>
<footer>
<p>© 2025 Hariom Dixit</p>
</footer>
</body>
</html>