-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (102 loc) · 4.24 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
<!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="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap" rel="stylesheet" />
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Cleangic</title>
</head>
<body>
<section class="home">
<!--navigation------------------------->
<nav>
<!--logo-->
<a href="#home" class="logo"><img class="logo" src="./assets/ui/Logo.png" alt="Logo" /></a>
<!--menu-->
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Login/ #</a></li>
</ul>
</nav>
<div class="head-container">
<h1>Services, on demand</h1>
<div class="inputicons">
<input type="text" name="search" class="input-field" placeholder="Search for a service ( e.g. cleaning, sanitizing etc. )" />
<button type="submit"><i class="fa fa-search" aria-hidden="true"></i></button>
</div>
</div>
</section>
<section class="services-container">
<div class="grid-container">
<div class="grid-item">
<img src="./assets/icons/comercial/Rectangle 27@2x.png" alt="Comercial Cleaning" />
<p>Comercial Cleaning</p>
</div>
<div class="grid-item">
<img src="./assets/icons/Resi/Rectangle 23@2x.png" alt="Residential Cleaning" />
<p>Residential Cleaning</p>
</div>
<div class="grid-item">
<img src="./assets/icons/hostel/Rectangle 24@2x.png" alt="hostel" />
<p>PG/Hostel Cleaning</p>
</div>
<div class="grid-item">
<img src="./assets/icons/sanitizing/Rectangle 21@2x.png" alt="sanitizing" />
<p>Sanitizing</p>
</div>
<div class="grid-item">
<img src="./assets/icons/room/Rectangle 18@2x.png" alt="room" />
<p>Room Cleaning</p>
</div>
<div class="grid-item">
<img src="./assets/icons/Sofa/Rectangle 17@2x.png" alt="sofa" />
<p>Sofa/ Carpet/ Mattress</p>
</div>
<div class="grid-item">
<img src="./assets/icons/car/Rectangle 20@2x.png" alt="car" />
<p>Car Cleaning</p>
</div>
<div class="grid-item">
<img src="./assets/icons/her/Rectangle 19@2x.png" alt="her-salon" />
<p>Her Salon</p>
</div>
<div class="grid-item">
<img src="./assets/icons/his/Rectangle 25@2x.png" alt="his-salon" />
<p>His Salon</p>
</div>
<div class="grid-item">
<img src="./assets/icons/repair/Rectangle 26@2x.png" alt="repair" />
<p>Repair/ Installation</p>
</div>
<div class="grid-item">
<img src="./assets/icons/comp/Rectangle 22@2x.png" alt="Computer" />
<p>Computer Appliances</p>
</div>
<div class="grid-item"></div>
</div>
</section>
<div class="footer">
<div class="text-container">
<p>Welcome to Cleangic Family</p>
<h2>Let's make you fresher than ever.</h2>
<div class="gap">
<p>We dream of getting a clean home or place— but who dreams of actually doing the cleaning?</p>
<p>
Our Prime Minister has started a cleanliness campaign called "Clean India“. We should take part in this campaign for the healthy life of all of us. To save
millions of lives and give them a healthy life, we all need to meet and move towards cleanliness.Purity is part of devotion. Therefore cleanliness is the
most important to get closer to God.
</p>
</div>
</div>
<div class="image-container">
<img src="./assets/Images/Untitled-1_0002_jan-kopriva-77La8Of1F9g-unsplash.png" height="566.57" width="309.31" alt="brush" class="brush" />
</div>
</div>
</body>
</html>