-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathService.html
111 lines (111 loc) · 3.03 KB
/
Service.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Car Parking Service</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1 {
text-align: center;
padding-top: 50px;
font-size: 50px;
color: #333;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.feature {
margin-bottom: 40px;
}
.feature h2 {
font-size: 30px;
color: #333;
margin-top: 0;
}
.feature p {
font-size: 20px;
color: #666;
margin-bottom: 20px;
}
.coupon {
background-color: #333;
color: #fff;
padding: 20px;
border-radius: 10px;
text-align: center;
}
.coupon h2 {
font-size: 30px;
margin-top: 0;
}
.coupon p {
font-size: 20px;
margin-bottom: 20px;
}
.button {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 20px;
cursor: pointer;
}
.button:hover {
background-color: #444;
}
</style>
</head>
<body>
<h1>Car Parking Service</h1>
<div class="feature">
<h2>Features</h2>
<p>Our car parking service offers the following features:</p>
<ul>
<li>Secure parking with 24/7 surveillance</li>
<li>Online booking system for easy reservation</li>
<li>Car cleaning and servicing available on site</li>
</ul>
</div>
<div class="coupon">
<h2>Special Coupons</h2>
<p>Get 10% off your next car cleaning or servicing with these special coupons from our website:</p>
<ul>
<li>
<h3>Car Cleaning Coupon</h3>
<p>Use code CLEAN10 to get 10% off your next car cleaning service.</p>
</li>
<li>
<h3>Car Servicing Coupon</h3>
<p>Use code SERVICE10 to get 10% off your next car servicing.</p>
</li>
</ul>
<button class="button">Book Now</button>
</div>
<div class="feature">
<h2>Car Cleaning</h2>
<p>Our car cleaning service offers the following features:</p>
<ul>
<li>Exterior wash and wax</li>
<li>Interior vacuuming and detailing</li>
<li>Clay bar treatment for a smooth finish</li>
</ul>
</div>
<div class="feature">
<h2>Car Servicing</h2>
<p>Our car servicing offers the following features:</p>
<ul>
<li>Oil change and filter replacement</li>
<li>Tire rotation and balance</li>
<li>Brake inspection and repair</li>
</ul>
</div>
</body>
</html>