-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
53 lines (47 loc) · 1.63 KB
/
services.html
File metadata and controls
53 lines (47 loc) · 1.63 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
<!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 - Services</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="service-categories">
<h2>Our Services</h2>
<ul>
<li>
<h3>Book Sales</h3>
<p>Explore our diverse collection of books for all ages.</p>
<p>Prices starting from ₹100.</p>
<a href="#" class="cta-button">Learn More</a>
</li>
<li>
<h3>Book Club</h3>
<p>Join our book club for monthly discussions and recommendations.</p>
<p>Membership fee: ₹200/month.</p>
<a href="#" class="cta-button">Join Now</a>
</li>
<!-- Add more service items as needed -->
</ul>
</section>
<section class="cta-section">
<p>Ready to dive into the world of literature? Explore our services now!</p>
<a href="#" class="cta-button">Explore Services</a>
</section>
<footer>
<p>© 2023 Book Shop. All rights reserved.</p>
</footer>
</body>
</html>