-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_us.html
269 lines (233 loc) · 12.2 KB
/
contact_us.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<!DOCTYPE html>
<!--This page was written by Andrei Hribanas.-->
<html lang="en">
<head>
<title> POWER BUDDIES </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="css/main.css" type="text/css"/>
<style>
#map_canvas {
width: 100%;
height: 400px;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
function initialize() {
var map_canvas = document.getElementById('map_canvas');
var map_options = {
center: new google.maps.LatLng(51.4278, 0.1680),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(map_canvas, map_options)
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="center_page"> <!-- CENTERS THE WEB PAGE -->
<header id="page_header"> <!-- PAGE HEADER -->
<div class="logo">
<img src="images/green5.jpg" class="logo_image" alt="logo image"/>
</div>
<div class="slogan">
<p class="header_text"> <span class="power_text">POWER</span><span class="buddies_text">BUDDIES</span>, <br> <span style="color:#FADF0F">CONNECTED</span> FOR LONGER ! </p> <br>
<p class="sub_header_text"><i> ' Green energy provider ' </i></p>
</div>
<div class="login_basket_buttons">
<form action="register.php" method="POST">
<input type="submit" value="Register" class="btn_register"><img src="images/login_logo2.jpg" class="login_logo"/>
</form>
<form action="login.php" method="POST">
<input type="submit" value="Sign in" class="btn_login"><img src="images/login_icon.jpg" class="login_logo"/>
</form>
<form action="shop.php" method="POST">
<input type="submit" value="Basket" class="btn_basket"><img src="images/basket5.jpg" class="basket_logo"/>
</form>
</div>
</header>
<!-- TOP NAVIGATION SEARCH SECTION -->
<nav>
<div id="top_nav"> <!-- TOP NAVIGATION BAR -->
<a href="index.html"><input type="submit" value="HOME" class="navButton"></a>
<a href="about_us.html"><input type="submit" value="ABOUT US" class="navButton"></a>
<a href="shop.php"><input type="submit" value="PRODUCTS" class="navButton"></a>
<a href="special_offers.html"><input type="submit" value="SPECIAL OFFERS" class="navButton"></a>
<a href="customer_service.html"><input type="submit" value="CUSTOMER SERVICE" class="navButton"></a>
<a href="contact_us.html"><input type="submit" value="CONTACT US" class="navButton"></a>
<!-- SEARCH BAR -->
<input type="submit" value="search" class="tfbutton"><input type="text" class="tftextinput" name="q" size="21" maxlength="120">
</div>
</nav>
<section id="page_section"> <!-- THE MAIN SECTION OF THE WEBPAGE-->
<div id="contact_callback">
<form>
<table>
<tr>
<th scope="col"><h4> Callback request</h4> </th>
</tr>
<tr>
<td><label for="name"> Name (full name): </label><input type="text" maxlength="50" size="20"></td>
</tr>
<tr>
<td><label for="email">Email: </label><br/><input type="text" maxlength="100" size="20"></td>
</tr>
<tr>
<td><label for="phoneNo">Telephone number: </label><br/></h5><input type="text" maxlength="11" size="20"></td>
</tr>
<tr>
<td>
<label for="callTime">Best time to call: </label><br/>
<select id="opt">
<option value="anytime">Anytime</option>
<option value="morning">In the morning</option>
<option value="afternoon">In the afternoon</option>
<option value="eveninng">In the evening</option>
</select>
</td>
</tr>
<tr>
<td>
<h5><label for="callDay">Best day to call: </label><br/>
<select id="opt">
<option value="monday">Monday</option>
<option value="tuesday">Tuesday</option>
<option value="wednesday">Wednesday</option>
<option value="thursday">Thursday</option>
<option value="friday">Friday</option>
<option value="saturday">Saturday</option>
<option value="sunday">Sunday</option>
</select>
</td>
</tr>
<tr>
<td>
<h5><label for="callTopic">Topic of call: </label><br/>
<select id="opt">
<option value="product_enquiry">Product enquiry</option>
<option value="service_enquiry">Service enquiry</option>
<option value="specialist_advice">Specialised advice</option>
</select> <br>
</td>
</tr>
<tr>
<td halign="center"><input type="submit" value="Contact me" id="callbackSubmit"></td>
</tr>
</table>
</form>
</div>
<div id="contact_map_form">
<div id="contact_map">
<h3 id="contact_text"> Find us </h3>
<div id="map_canvas"></div> <!-- EMBED GOOGLE MAPS -->
</div>
<div id="contact_form">
<h3 id="contact_text"> Contact us </h3>
<form name="" method="" action="http://www.google.com/" class="form" >
<table id="table_form">
<!-- </tr> -->
<tr>
<td valign="top">
<label for="first_name">First Name *</label>
</td>
<td valign="top">
<input type="text" name="first_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="last_name">Last Name *</label>
</td>
<td valign="top">
<input type="text" name="last_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="email">Email Address *</label>
</td>
<td valign="top">
<input type="text" name="email" maxlength="80" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="telephone">Telephone Number</label>
</td>
<td valign="top">
<input type="text" name="telephone" maxlength="30" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="comments">Comments *</label>
</td>
<td valign="top">
<textarea name="comments" maxlength="1000" cols="25" rows="6"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
</div>
</div>
<div id="contact_informations">
<p><h4>Sales Enquiries</h4> </p>
Tel: 0845 XXX XXX <br>
Fax: 01249 XXXXXX<br>
Office Hours: Monday to Friday 8.30am to 5.30pm <br>
Email: sales@powerbuddies.co.uk<br>
</p>
<br>
<h4> Customer Care</h4>
<p>Tel: 0845 XXX XXX </p>
<p>Fax: 01249 XXXXXX </p>
<p>Office Hours:
<ul>
<li id="customerCare_item"> Monday to Friday 8.30am to 5.30pm </li>
<li id="customerCare_item"> Saturday and Sunday 9.00am to 4.00pm </li>
</ul>
</p>
<p>Email: customerservices@powerbuddies.co.uk </p>
<br>
<p><h4>All other enquiries</h4>
Tel: 01249 XXXXXX<br>
Fax: 01249 XXXXXX<br>
Email: enquiries@powerbuddies.co.uk<br>
</p>
<br>
</div>
</section>
<footer>
<div id="page_footer"> <!-- PAGE FOOTER -->
<nav id="bottom_nav"> <!-- BOTTOM NAVIGATION BAR -->
<!-- <a href="privacy_cookies.html"><input type="submit" value="Privacy & Cookies" class="navButton"></a> -->
<a href="terms_conditions.html"><input type="submit" value="Terms and conditions" class="navButton"></a>
<a href="careers.html"><input type="submit" value="Careers" class="navButton"></a>
<a href="accesibility.html"><input type="submit" value="Accessibility" class="navButton"></a>
<a href="faq.html"><input type="submit" value="F.A.Q." class="navButton"></a>
</nav>
<div id="social_networking_block"> <!-- SOCIAL NETWORKING AREA (SOCIAL NETWORKS ICONS) -->
<p><h5 id="message_text"> CONNECT WITH US </h5></p>
<a href="https://www.facebook.com/"><img src="images/facebook_logo.jpg" id="social_button" alt="facebook" /></a>
<a href="https://twitter.com/"><img src="images/twitter_logo.jpg" id="social_button" alt="twitter" /></a>
<a href="http://www.linkedin.com/"><img src="images/linkedin_logo.jpg" id="social_button" alt="linkedin" /></a>
<a href="http://www.plus.google.com/"><img src="images/google_logo.jpg" id="social_button" alt="google plus" /></a>
<a href="http://www.youtube.com/"><img src="images/youtube_logo.jpg" id="social_button" alt="youtube" /></a>
<a href="http://www.flickr.com/"><img src="images/flicker_logo.jpg" id="social_button" alt="google" /></a>
<a href="http://www.instagram.com/"><img src="images/instagram_logo.jpg" id="social_button" alt="instagram" /></a>
</div>
</div>
</footer>
<div id="copywright">
<h6> © 2014 COPYWRIGHT POWER BUDDIES INC. All rights reserved. </h6>
<h6> Designed by Andrei Hribanas </h6>
</div>
</div> <!-- center maker div -->
</body>
</html>