-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
329 lines (308 loc) · 19.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
</style>
</head>
<body>
<div class="container-fluid">
<!-- nav bar start-->
<div class="row nav-bar">
<div class="col-3 d-flex">
<img src="images/logo.jpg" class="logo">
<h2 class="mt-4 ms-3">CLEANING SERVICES</h2>
</div>
<div class=" offset-3 col-4 mt-3 p-2 text-end">
<a href="#home" class="fs-4 me-5">Home</a>
<a href="#service" class="fs-4 me-5">Service</a>
<a href="#about" class="fs-4 me-5">About</a>
<a href="#contact" class="fs-4 me-5">Contact</a>
</div>
<div class="col-2 p-2 text-end mt-2">
<button class="btn p-3 me-2" id="signIn" type="button" >Sign In</button>
<button class="btn p-3" id="signUp" type="button">Sign Up</button>
</div>
<div id="signInForm" class="">
<form action="#" class="form-control px-2">
<div class="d-flex">
<img src="images/logo.jpg" class="form-logo">
<h1 class="text-center text-success mt-5">Sign In Form</h1>
<i class="fa-solid fa-xmark fs-2"></i>
</div>
<div class="d-flex m-3 row">
<label for="email" class="col-2 text-end mt-2 me-3">Email:</label>
<input type="email" name="email" class="form-control col-8">
</div>
<div class="d-flex m-3 row">
<label for="password" class="col-2 text-end mt-2 me-3">Password:</label>
<input type="password" name="password" class="form-control col-8">
</div>
<div class="text-center mt-4">
<button class="btn btn-success p-3">Sign In</button>
</div>
</form>
</div>
<div id="signUpForm">
<form action="#" class="form-control px-2">
<div class="d-flex">
<img src="images/logo.jpg" class="form-logo">
<h1 class="text-center text-success mt-5">Sign Up Form</h1>
<i class="fa-solid fa-xmark fs-2"></i>
</div>
<div class="d-flex m-3 row">
<label for="name" class="col-2 text-end mt-2 me-3">Name:</label>
<input type="text" name="name" class="form-control col-8">
</div>
<div class="d-flex m-3 row">
<label for="email" class="col-2 text-end mt-2 me-3">Email:</label>
<input type="email" name="email" class="form-control col-8">
</div>
<div class="d-flex m-3 row">
<label for="phone" class="col-2 text-end mt-2 me-3">Phone:</label>
<input type="number" name="phone" class="form-control col-8">
</div>
<div class="d-flex m-3 row">
<label for="password" class="col-2 text-end mt-2 me-3">Password:</label>
<input type="password" name="password" class="form-control col-8">
</div>
<div class="d-flex m-3 row">
<label for="password_confirm" class="col-2 text-end mt-2 me-3">Confirm Password:</label>
<input type="password" name="password_confirm" class="form-control col-8">
</div>
<div class="text-center mt-3">
<button class="btn btn-success p-3">Sign Up</button>
</div>
</form>
</div>
</div>
<!-- nav-bar end-->
<!-- home section start -->
<div id="home">
<div class="row">
<h1>We help you to keep your place clean</h1>
<p class="text-dark fs-5">We use specialize and quality equipment tools for cleaning</p>
<a href="#admin"><button class="btn btn-success">Meet Team</button></a>
<ul class="fs-5">
<li>Cleanliness perfected, satisfaction guaranteed!</li>
<li>Leaving behind a spotless legacy.</li>
<li>Revitalizing spaces, one sparkle at a time.</li>
<li>Experience the magic of cleanliness.</li>
<li>Our cleaning wizards make your worries disappear.</li>
</ul>
</div>
</div>
<!-- home section end -->
<!-- service section start -->
<div id="service" class="mt-5">
<h1 class="text-center mb-5">Professional cleaning services</h1>
<div class="cards d-flex justify-content-center">
<div class="card m-4">
<div class="card-title">
<img src="images/officeCleaning.jpg" alt="">
</div>
<div class="card-body">
<h5>Office cleaning</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Phasellus imperdiet, nulla et dictum interdum, nisi lorem
egestas vitae scel<span id="dots">...</span>
<span id="more">erisque enim ligula venenatis dolor.
Maecenas nisl est, ultrices nec congue eget, auctor
vitae massa. Fusce luctus vestibulum augue ut aliquet.
Nunc sagittis dictum nisi, sed ullamcorper ipsum
dignissim ac. In at libero sed nunc venenatis imperdiet
sed ornare turpis. Donec vitae dui eget tellus gravida
venenatis. Integer fringilla congue eros non fermentum.
Sed dapibus pulvinar nibh tempor porta.</span></p>
<button onclick="myfunction()" class="btn btn-success" id="myBtn">Read more</button>
</div>
</div>
<div class="card m-4">
<div class="card-title">
<img src="images/homeCleaning.jpg" alt="">
</div>
<div class="card-body">
<h5>House cleaning</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Phasellus imperdiet, nulla et dictum interdum, nisi lorem
egestas vitae scel<span id="dots1">...</span>
<span id="more1">erisque enim ligula venenatis dolor.
Maecenas nisl est, ultrices nec congue eget, auctor
vitae massa. Fusce luctus vestibulum augue ut aliquet.
Nunc sagittis dictum nisi, sed ullamcorper ipsum
dignissim ac. In at libero sed nunc venenatis imperdiet
sed ornare turpis. Donec vitae dui eget tellus gravida
venenatis. Integer fringilla congue eros non fermentum.
Sed dapibus pulvinar nibh tempor porta.</span></p>
<button onclick="myfunction1()" class="btn btn-success" id="myBtn1">Read more</button>
</div>
</div>
<div class="card m-4">
<div class="card-title">
<img src="images/commercialCleaning.jpg" alt="">
</div>
<div class="card-body">
<h5>Commercial cleaning</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Phasellus imperdiet, nulla et dictum interdum, nisi lorem
egestas vitae scel<span id="dots2">...</span>
<span id="more2">erisque enim ligula venenatis dolor.
Maecenas nisl est, ultrices nec congue eget, auctor
vitae massa. Fusce luctus vestibulum augue ut aliquet.
Nunc sagittis dictum nisi, sed ullamcorper ipsum
dignissim ac. In at libero sed nunc venenatis imperdiet
sed ornare turpis. Donec vitae dui eget tellus gravida
venenatis. Integer fringilla congue eros non fermentum.
Sed dapibus pulvinar nibh tempor porta.</span></p>
<button onclick="myfunction2()" class="btn btn-success" id="myBtn2">Read more</button>
</div>
</div>
</div>
</div>
<!-- service section end -->
<!-- about section start -->
<div id="about" class="mt-5 mb-5">
<h1 class="text-center">About Us</h1>
<div class="d-flex mt-5">
<img src="images/about.jpg" class="rounded aboutImg">
<p class="fs-5 ms-3">
Cleaning Services is the prestigious Commercial and Residential cleaning outfit serving all areas around Gauteng. We are a family owned and locally operated business that offers a whole spectrum of cleaning and restoration solutions. At Famous cleaning we are able to continuously provide our customers with personalized cleaning solutions, at a reasonable price, according to their specific needs – We listen to you and provide knowledgeable, experienced advice in offering successful solutions to resolve your cleaning project quickly and efficiently.
Famous Cleaning Technicians take great pride in offering quality service and value to small or big customers; our reputation and business is continually growing. Most of our initial customers are referred from our many satisfied clients and more and more Homes / business owners trust us to help maintain and treat their expensive rugs, carpets – loose/fitted, Upholstery – fabric/leather, tiles and furnishing; to keep them looking as great as they can be.
We offer only the best cleaning methods and use only the safest, most effective products to achieve the best possible result.
</p>
</div>
<button class="btn btn-success p-3 float-end fs-5 feedback">Leave your feedback</button>
<div id="feedbackForm">
<form action="#" class="form-control px-2">
<div class="d-flex">
<img src="images/logo.jpg" class="form-logo">
<h1 class="text-center text-success mt-5">Thanks for review</h1>
<i class="fa-solid fa-xmark fs-2"></i>
</div>
<div class="d-flex m-3 row">
<label for="email" class="col-2 text-end mt-2 me-3">Email:</label>
<input type="email" name="email" class="form-control col-8">
</div>
<div class="d-flex m-3 row">
<label for="feedback" class="col-2 text-end mt-2 me-3">Feedback:</label>
<textarea name="feedback" class="form-control col-8"></textarea>
</div>
<div class="text-center mt-4">
<button class="btn btn-success p-3 fs-5">Send</button>
</div>
</form>
</div>
</div>
<!-- about section end -->
<!-- admin team start-->
<div class="text-center contact mt-5" id="contact">
<h1 class="my-5">Contact Us</h1>
<div class="row">
<div class="address mt-5 col" >
<i class="fa-solid fa-house-chimney fs-1 text-white"></i>
<span class="text-center">Address</span><br>
<h5 class="ms-5 mt-3">No.587/588, Thihathu St, (11) Qtr,<br>
South Oakkala Township, Yangon.</h5>
</div>
<div class="phone mt-5 col">
<i class="fa-solid fa-phone fs-1 text-white"></i>
<span class="text-center">Phone</span><br>
<h5 class="ms-5 mt-3">09378298762 , 09876534564</h5>
</div>
<div class="email mt-5 mb-5 col">
<i class="fa-solid fa-envelope fs-1 text-white"></i>
<span class="text-center">Email</span><br>
<h5 class="ms-5 mt-3">[email protected]</h5>
</div>
</div>
<h1 class="my-5">Company members</h1>
<div class="row adminTeam" id="admin">
<div class="col-12 col-sm-6 col-md-6 col-lg-6 col-xl-4 mb-5">
<div class="admin text-center">
<img src="images/profile1.jpg" id="adminImage">
<div class="text">
<h3>Aye Yu Lwin</h3>
<h4>CEO</h4>
<h4>[email protected]</h4>
<div class="me-3 mt-5 fs-3 text-end">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-square-instagram"></i>
<i class="fa-brands fa-square-twitter"></i>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-6 col-xl-4 mb-5">
<div class="admin text-center">
<img src="images/profile.jpg" id="adminImage">
<div class="text">
<h3>Bhone Pyae Zaw</h3>
<h4>Manager</h4>
<h4>[email protected]</h4>
<div class="me-3 mt-5 fs-3 text-end">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-square-instagram"></i>
<i class="fa-brands fa-square-twitter"></i>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-md-6 col-lg-6 col-xl-4 mb-5">
<div class="admin text-center">
<img src="images/profile2.jpg" id="adminImage">
<div class="text">
<h3>Yhe Mon Lwin</h3>
<h4>Assistant Manager</h4>
<h4>[email protected]</h4>
<div class="me-3 mt-5 fs-3 text-end">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-square-instagram"></i>
<i class="fa-brands fa-square-twitter"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- admin team end -->
<!-- footer -->
<div class="footer">
<div class="row footer1 p-4">
<div class="d-flex justify-content-center">
<div class="mx-5 text-center">
<img src="images/secure.jpg" class="safeImg">
<h2>SAFE & SECURE</h2>
<h3>Trustworthy, honest team</h3>
</div>
<div class="mx-5 text-center">
<img src="images/sustain.jpg" class="sustainImg">
<h2>SUSTAINABLE</h2>
<h3>Commited to sustainability</h3>
</div>
<div class="mx-5 text-center">
<img src="images/quality.jpg" class="qualityImg">
<h2>HIGHLY QUALIFIED</h2>
<h3>Full training & support</h3>
</div>
</div>
</div>
<div class="row footer2 pt-3 fs-5 text-center">
<p>Copyright © 2024 Cleaning Services. Powered By CS Group NZ (Crewcut, Chemcare, Welding, Facilities, Workforce)</p>
</div>
</div>
</div>
</body>
<script src="./main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</html>