-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (32 loc) · 793 Bytes
/
index.php
File metadata and controls
32 lines (32 loc) · 793 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mahesh hi Blog</title>
</head>
<body>
<header>
<h1>Welcome to Mahesh Blog</h1>
</header>
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="about.php">About</a></li>
<li><a href="contact.php">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>