-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 813 Bytes
/
index.html
File metadata and controls
32 lines (32 loc) · 813 Bytes
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
lo<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mahesh good Blog</title>
</head>
<body>
<header>
<h1>Welcome to Mahesh chandrasekhar Blog</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<section>
<h2>Latest Posts</h2>
<article>
<h3>Post Title</h3>
<p>This is a sample blog post.</p>
</article>
</section>
</main>
<footer>
<p>© 2024 Mahesh Blog. All rights reserved.</p>
</footer>
</body>
</html>