-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactPage.html
More file actions
172 lines (144 loc) · 5.29 KB
/
ContactPage.html
File metadata and controls
172 lines (144 loc) · 5.29 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
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
<!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="ContactPage.css">
<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>Contact us</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 contact-->
<h2>Contact Us</h2>
<div class="background">
<div class="container">
<div class="screen">
<div class="screen-header">
<div class="screen-header-left">
</div>
<div class="screen-header-right">
<div class="screen-header-ellipsis"></div>
<div class="screen-header-ellipsis"></div>
<div class="screen-header-ellipsis"></div>
</div>
</div>
<div class="screen-body">
<div class="screen-body-item left">
<div class="app-title">
<span>CONTACT</span>
<span>US</span>
</div>
<div class="app-contact">CONTACT INFO : +44 07863241148</div>
</div>
<div class="screen-body-item">
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="35445368-a00a-4c7e-9bf0-3535b693a686">
<div class="app-form">
<div class="app-form-group">
<input class="app-form-control" type="text" name="name" required placeholder="Name">
</div>
<div class="app-form-group">
<input class="app-form-control" type="text" name="Address" required placeholder="Address">
</div>
<div class="app-form-group">
<input class="app-form-control" type="text" name="number" required placeholder="CONTACT NO">
</div>
<div class="app-form-group message">
<input class="app-form-control" name="message" required placeholder="MESSAGE">
</div>
<div class="app-form-group buttons">
<button class="app-form-button">CANCEL</button>
<button class="app-form-button">SEND</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End of contact-->
<!--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="mail:DriveSafeAcademy@mymyahoo.com">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="ContactPage.js"></script>
</body>
</html>