-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
36 lines (36 loc) · 1.55 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
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="./assets/css/about.css">
<title>Tea Explorer - About</title>
</head>
<body>
<header>
<h1>Tea Explorer</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="types-of-tea.html">Types of Tea</a></li>
<li><a href="health-benefits.html">Health Benefits</a></li>
<li><a href="brewing-guide.html">Brewing Guide</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Tea Explorer</h2>
<p>Tea Explorer is your one-stop destination for all things tea. Our mission is to help tea enthusiasts learn about the rich history, diverse types, and proper brewing techniques of this beloved beverage.</p>
<p>Founded in 2023 by a group of passionate tea lovers, Tea Explorer aims to provide a platform where people can come together to explore and share their love for tea. We believe that the world of tea is vast, and there is always something new to learn and discover.</p>
<p>We hope that our website will inspire you to embark on your own tea journey and explore the fascinating world of tea. Thank you for visiting, and happy tea drinking!</p>
</section>
</main>
<footer>
<p>© 2023 Tea Explorer. All rights reserved.</p>
</footer>
</body>
</html>