-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
60 lines (48 loc) · 1.91 KB
/
about.html
File metadata and controls
60 lines (48 loc) · 1.91 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!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">
<title>Book Shop - About Us</title>
</head>
<body>
<header>
<div class="logo">Book Shop</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="company-overview">
<h2>About Us</h2>
<p>Welcome to Book Shop, your go-to destination for all things literature. We are passionate about connecting readers with the perfect books and creating a community of book lovers.</p>
</section>
<section class="founder-story">
<h2>Founder's Story</h2>
<p>Meet our founder, Gowtham C K. Gowtham's love for books and the desire to share that passion with others led to the establishment of Book Shop. His journey began in a small bookstore, and today, Book Shop stands as a haven for book enthusiasts.</p>
</section>
<section class="team-members">
<h2>Meet Our Team</h2>
<div class="team-member">
<h3>XYZ</h3>
<p>Book Curator</p>
</div>
<div class="team-member">
<h3>ABC</h3>
<p>Customer Support</p>
</div>
</section>
<section class="cta-section">
<p>Join us on this literary journey. Connect with us and be a part of the Book Shop community!</p>
<a href="contact.html" class="cta-button">Contact Us</a>
</section>
<footer>
<p>© 2023 Book Shop. All rights reserved.</p>
</footer>
</body>
</html>