-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServicepage.html
169 lines (140 loc) · 4.75 KB
/
Servicepage.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link rel="stylesheet" href="ServicePage.css">
<link rel="icon" type="image/x-icon" href="image_2024-02-20_184222107_prev_ui.png">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<!-- Google Font -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<title>Services</title>
</head>
<body>
<!-- Start of the header -->
<header class="header-area">
<!-- site-navbar start -->
<div class="navbar-area">
<div class="container">
<nav class="site-navbar">
<!-- site logo -->
<img class="site-logo" src="image_2024-02-20_184222107_prev_ui.png" alt="Image">
<!-- site menu/nav -->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="PricePage.html">Price</a></li>
<li><a href="Servicepage.html">Service</a></li>
<li><a href="Franchise.html">Franchise</a></li>
<li><a href="ContactPage.html">Contact Us</a></li>
</ul>
<!-- nav-toggler for mobile version only -->
<button class="nav-toggler">
<span></span>
</button>
</nav>
</div>
</div><!-- navbar-area end -->
</header>
<!-- End of the header -->
<!--Start of banner img-->
<div class="banner">
<img src="banner.jpg" alt="Banner Image">
</div>
<!--End of banner img-->
<!-- Start of the Services -->
<section>
<div class="row">
<h2 class="section-heading">Our Services</h2>
</div>
<div class="row">
<div class="column">
<div class="card">
<div class="icon-wrapper">
<i class="fa-solid fa-car"></i>
</div>
<a href="Dintensive.html" class="no-decoration space">Intensive Driving Course</a>
<p>
Through our Intensive Driving Course we have designed for all the pupils of Birmingham, they can get their licenses sooner.
</p>
</div>
</div>
<div class="column">
<div class="card">
<div class="icon-wrapper">
<i class="fa-solid fa-book"></i>
</div>
<a href="DLesson.html" class="no-decoration space">Driving Lesson</a>
<p>
If you are looking for a reliable and professional driving school, look no further than Drive Safe Academy.
</p>
</div>
</div>
<div class="column">
<div class="card">
<div class="icon-wrapper">
<i class="fa-solid fa-school"></i>
</div>
<a href="Dschool.html" class="no-decoration space">Driving School</a>
<p>
Looking to boost your driving skills and confidence in Birmingham? Choose Now Pass Driving School.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of the Services -->
<!--Start of top footer-->
<footer class="footer-distributed">
<div class="footer-left">
<div><img src="http://www.pittsfieldnhschools.org/District_Logo_Alpha2.png" alt=""></div>
<p class="footer-company-name">Drive Safe Academy © 2024</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p><span>BIRMINGAHM</span></p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>07863241148</p>
</div>
<div>
<i class="fa fa-fax"></i>
<p>+44 7863241148</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="">DriveSafeAcademy@yahoo.com</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>See us on</span>
</p>
<div class="footer-icons">
<a href=""><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
</div>
</div>
</footer>
<!--End of top footer-->
<!--Start of bottom footer-->
<footer>
<div class="container">
<p>© 2024 Drive Safe Academy. All rights reserved.</p>
</div>
</footer>
<!--end of bottom footer-->
<script src="ServicePage.js"></script>
</body>
</html>