-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
383 lines (366 loc) · 18.5 KB
/
index.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./public/fontawesome-free-5.15.3-web/css/all.min.css">
<link rel="stylesheet" href="./public/css/bootstrap.min.css">
<link rel="stylesheet" href="./public/css/style.css">
<title>Fe1-Project</title>
</head>
<body>
<header>
<div class="top-header">
<div class="content">
<div class="phone">
<i class="fas fa-phone-alt"></i>
<span>Call Today: </span>
<a href="tel:555-123-5353">555-123-5353;</a>
<a href="tel:555-12-2323">555-12-2323</a>
</div>
<div class="opening-hour">
<i class="far fa-clock"></i>
<span class="sub-detail">Opening Hours:</span>
<span class="main-detail">Mon-Fri: 9am-6pm; Sat-Sun: 10am - 1pm</span>
</div>
<div class="social-media">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-pinterest"></i>
</div>
</div>
</div>
<div class="main-header">
<div class="content">
<div class="logo">
<a href="#"><img src="./public/images/logo.png" alt="logo"></a>
</div>
<div class="nav">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Plumbers</a></li>
<li><a href="">Services</a></li>
<li><a href="">News</a></li>
<li><a href="">Contacts</a></li>
</ul>
</div>
<div class="book-btn">
<a href="#">Book an appointment</a>
</div>
</div>
</div>
</header>
<div class="banner">
<div class="content">
<h5>Meet our Worker of the Month,<br>Steven Pipefree!</h5>
<button>more info</button>
</div>
</div>
<div class="introduction-wrap">
<div class="introduction-inner">
<div class="content">
<h1>The fastest and mot robust plumbing service in Wyoming!</h1>
<span></span>
<p>The history of this Wyoming plumbing service goes as far back as 1933. These were the times when
Samuel Buick created and patented a first ever automatic machine for cleaning pipes and drains. He
called it “Hopo-Hooper” and founded a plumbing service with the initial capital which he earned
thanks to his invention!</p>
<p>Since then, the plumbing service he founded on par with that invention has stayed in that same
family’s ownership.
</p>
</div>
</div>
</div>
<div class="features">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="item">
<i class="fas fa-tint"></i>
<span><a href="#">Experience</a></span>
<p>While our team is not that big, their totaling experience is so huge, that they fix plumbing
issues just by looking at them!</p>
</div>
</div>
<div class="col-md-3">
<div class="item">
<i class="fas fa-key"></i>
<span><a href="#">Tools</a></span>
<p>We have all the industry standard tools and we’re regularly updating our stock with the
latest plumbing equipment!</p>
</div>
</div>
<div class="col-md-3">
<div class="item">
<i class="far fa-thumbs-up"></i>
<span><a href="#">Accessibility</a></span>
<p>Everyone knows, how hard it is to find a plumber in Wyoming during winter. As opposed to that
notion, we work 24/7/365, all year long…</p>
</div>
</div>
<div class="col-md-3">
<div class="item">
<i class="far fa-lightbulb"></i>
<span><a href="#">Affordability</a></span>
<p>We’re convinced, that any good service simply must be also an affordable service. That is why
we always keep our pricing at bay.</p>
</div>
</div>
</div>
</div>
</div>
<div class="service">
<div class="wrap-main">
<h2>See a full list of all our plumbing services here:</h2>
<span></span>
<div class="main-content">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="content-item">
<ul>
<li><a href="#">Commercial Plumbing</a></li>
<li><a href="#">Water Damage Restoration</a></li>
<li><a href="#">Emergency Plumber</a></li>
<li><a href="#">Outdoor Plumbing</a></li>
<li><a href="#">Kitchen Plumbing</a></li>
<li><a href="#">Bathroom Plumbing</a></li>
<li><a href="#">Basement Plumbing</a></li>
<li><a href="#">Laundry Room Plumbing</a></li>
</ul>
</div>
</div>
<div class="col-md-8">
<div class="content-item">
<p>Our plumbing company offers a variety of services for commercial companies.</p>
<div class="wrap-sub-col">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="inner">
<img class="img-fluid" src="./public/images/shutterstock_438591886.jpg"
alt="img">
</div>
</div>
<div class="col-md-6">
<div class="inner">
<h3>Crawl Space Plumbing</h3>
<p>In many commercial applications, it’s necessary to hide both
wiring and plumbing fixtures in the so-called “crawl spaces”.
</p>
<a href="#">read more</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="call-to-action">
<div class="content">
<h2>
Did you get your pipes frozen? Or maybe, your faucets are no longer working?
</h2>
<p>
Maybe you’ve had your hot, cold or both kinds of water supply cut? If anything of that or inline with
that is the <br> then you’ll probably love our timely and affordable plumbing servicing!
</p>
<a href="#">book an appointment</a>
</div>
</div>
<div class="comment">
<div class="wrap">
<h2>Satisfied customers, have a say!</h2>
<span></span>
<div class="main-content">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="item">
<p>
When our hotel’s building had all water suddenly shut, we virtually were stopped at
all of our business operations… Thanks God there was the “PlumberPro” service out
there, which helped us out big time!
</p>
</div>
<p class="name-customer">Gavin Beave</p>
<p class="detail">Male from United States</p>
</div>
<div class="col-md-4">
<div class="item">
<p>
Having some pipe broken and leaking, right in the middle of cooking a family dinner,
that’s a problem our family had to deal with recently… Thankfully, these plumbers
were fast and keen to help us all out!
</p>
</div>
<p class="name-customer">Walter Kindred</p>
<p class="detail">Male from United States</p>
</div>
<div class="col-md-4">
<div class="item">
<p>
Winter in Wyoming has never been easy… More to that, we’ve had some of our outdoor
pipes frozen. Thankfully, the plumbers whom we called knew what to do and did it in
an utmost timely fashion…
</p>
</div>
<p class="name-customer">Arthur Hemsworth</p>
<p class="detail">Male from United States</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tip">
<div class="wrap">
<h2>In our Blog we <span>always have some helpful</span> tips for you and your plumbing needs!</h2>
<span></span>
<div class="main-content">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="item">
<a href="#"><img class="img-fluid"
src="./public/images/Depositphotos_22620531_original-1-1170x650.jpg" alt="img"></a>
<a class="title" href="#">Tips for Redesigning Your Bathroom</a>
<p>Designing a bathroom can easily become a truly daunting task, especially if space and
cost are of concern. There’s a whole multitude of different decisions that need to
be taken when we’re talking about a...</p>
<span>
November 20, 2019
</span>
</div>
</div>
<div class="col-md-4">
<div class="item">
<a href="#"><img class="img-fluid"
src="./public/images/Depositphotos_8828075_original-1-1170x650.jpg" alt="img"></a>
<a class="title" href="#">Choosing a water efficient kitchen faucet</a>
<p>
A regular bathroom shower head is most usually shaped like a ball and is generally
adjustable in its positioning during the usage... But that conventional solution is
not the only option that is at your...
</p>
<span>
November 20, 2019
</span>
</div>
</div>
<div class="col-md-4">
<div class="item">
<a href="#"><img class="img-fluid"
src="./public/images/Depositphotos_8900010_original-1170x650.jpg" alt="img"></a>
<a class="title" href="#">Do you have kids? Then you need a thermostat!</a>
<p>
The issue of hot water is a pretty hot topic in a plumbing world. No pun intended,
but there's one residential plumbing fixture, which is crazy popular for the last 10
years or so and...
</p>
<span>
November 20, 2019
</span>
</div>
</div>
</div>
<a href="#">see all news</a>
</div>
</div>
</div>
</div>
<div class="contact">
<div class="wrap">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="inner-col-4">
<h2>Contact us</h2>
<span></span>
<ul>
<li>
<i class="far fa-map"></i>
<span>55 Bloomfield Ave, Pinedale, <br>WY 82941, United States</span>
</li>
<li>
<i class="fas fa-phone"></i>
<a href="tel:555.123.2323">555.123.2323</a>
</li>
</ul>
<div class="mail">
<i class="far fa-envelope"></i>
<a href="#">[email protected]</a>
</div>
<h2 id="opening-hour">Opening Hours</h2>
<div class="clock">
<i class="far fa-clock"></i>
<span>Monday – Friday: 9am-6pm
<br>
Saturday: 10am-4pm
<br>
Sunday: 10am-1pm
</span>
</div>
<button>book an appointment</button>
</div>
</div>
<div class="col-md-8">
<div class="inner-col-8">
<h3>Get in touch with us</h3>
<div class="infor-1">
<div class="firstname">
<label for="firstname">First name</label><br>
<input type="text" id="firstname" name="firstname" placeholder="First name">
</div>
<div class="emailaddress">
<label for="emailaddress">Email Address</label><br>
<input type="text" id="emailaddress" name="emailaddress"
placeholder="[email protected]">
</div>
</div>
<div class="infor-2">
<div class="lastname">
<label for="lastname">Last name</label><br>
<input type="text" id="lastname" name="lastname" placeholder="Last name">
</div>
<div class="subject">
<label for="subject">Subject</label><br>
<input type="text" id="subject" name="subject">
</div>
</div>
<div class="message">
<label for="message">Message</label><br>
<textarea name="message" id="message" cols="70" rows="4"
placeholder="Your message"></textarea>
</div>
<a href="#">send</a>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="wrap">
<div class="text">
© 2019 Plumberpro. All Rights Reserved . Design by <span>Zemez</span>
</div>
<div class="social-media">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-pinterest"></i>
</div>
</div>
</footer>
</body>
</html>