-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shaurya's Thoughts</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">About Me</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<h1>Welcome to Shaurya's Thoughts</h1>
</header>
<section id="intro">
<p>Welcome to my personal blog where I share my thoughts and ideas. Dive in and explore my latest posts!</p>
</section>
<section id="posts">
<h2>Recent Posts</h2>
<div class="post">
<h3>Post Title 1</h3>
<p>A brief introduction of your first blog post. Click to read more!</p>
</div>
<div class="post">
<h3>Post Title 2</h3>
<p>A brief introduction of your second blog post. Click to read more!</p>
</div>
</section>
<footer>
<p>© 2024 Shaurya's Thoughts | <a href="#">Privacy Policy</a></p>
</footer>
<script src="js/main.js"></script>
</body>
</html>