-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPricePage.html
188 lines (154 loc) · 4.81 KB
/
PricePage.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!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="PricePage.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>Pricing</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 Pricing-->
<div class="container">
<div class="pricing">
<h1>Our Pricing</h1>
</div>
<!-- 3 column grid -->
<div class="grid-container show-monthly" id="grid">
<div class="price-panel">
<h4>2 Hour</h4>
<h2>
<span class="monthly">
£60
</span>
<span class="annually">
$#####
</span>
</h2>
<ul>
<li>Mannual car</li>
<li>Exprieced Intructor</li>
</ul>
</div>
<div class="price-panel premium">
<h4>Stundent discount</h4>
<h2>
<span class="monthly">
£32
</span>
<span class="annually">
$#######
</span>
</h2>
<ul>
<li>1 hour</li>
<li>Mannual car</li>
<li>Exprieced Intructor</li>
</ul>
</div>
<div class="price-panel">
<h4>1 Hour</h4>
<h2>
<span class="monthly">
£34
</span>
<span class="annually">
$#####
</span>
</h2>
<ul>
<li>First lesson</li>
<li>Mannual car</li>
<li>Exprieced Intructor</li>
</ul>
</div>
</div>
</div>
</div>
<!--End of Pricing-->
<!--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="PricePage.js"></script>
</body>
</html>