-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
31 lines (31 loc) · 1.16 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - My Blog</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>My Blog</h1>
<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>
</header>
<main>
<section id="about">
<h2>About Us</h2>
<p>Welcome to My Blog! We share insightful articles on various topics including technology, lifestyle, and more. Our goal is to provide valuable content that informs and inspires our readers.</p>
<p>Our team of dedicated writers works hard to bring you the latest trends and information. Stay tuned for regular updates and feel free to reach out if you have any questions or suggestions.</p>
</section>
</main>
<footer>
<p>© VIGNESH G 2024 My Blog. All rights reserved.</p>
</footer>
</body>
</html>