forked from prashantmore277/NaeeShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallService.html
234 lines (192 loc) · 10.1 KB
/
allService.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
<!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">
<title>NaeeShop work in progress</title>
<!-- linking css -->
<link rel="stylesheet" href="./NAEESHOP-GIT/css/style.css">
<!-- linking header -->
<link rel="stylesheet" href="./NAEESHOP-GIT/css/header.css">
<!-- linking footer style sheet -->
<link rel="stylesheet" href="./NAEESHOP-GIT/css/footer.css">
<!-- linking responvise css -->
<link rel="stylesheet" href="./NAEESHOP-GIT/css/responsive.css">
<!-- linking img hover style sheet -->
<link rel="stylesheet" href="./NAEESHOP-GIT/css/image_hover.css">
<!-- linking button style sheet -->
<link rel="stylesheet" href="./NAEESHOP-GIT/css/button_css.css">
<!-- linking google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+2&display=swap" rel="stylesheet">
<!-- linking bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<!-- linking font awesome -->
<link rel="stylesheet" href=" https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<!-- Adding web icon -->
<link rel="shortcut icon" href="./NAEESHOP-GIT/Logo/naeeshop.png" type="image/x-icon">
</head>
<body>
<header>
<a href="./index.html" class="logo-link"><img class="logo" src="./NAEESHOP-GIT/Logo/naeeshop.png" alt="logo"></a>
<nav class="navbar">
<div class="nav-links" id="nav-links">
<i class="fa fa-times" onclick="hiddenMenu()" aria-hidden="true"></i>
<a href="./index.html" id="nav-link-home" class="nav-tabs">Home</a>
<a href="./index.html#categories" class="nav-tabs">Online Booking</a>
<a href="./index.html#home-service" class="nav-tabs">Home Service</a>
<a href="./index.html#e-commerce" class="nav-tabs">Shop</a>
<a href="./index.html#contact" class="nav-tabs">Contact</a>
</div>
<i class="fa fa-bars" aria-hidden="true" onclick="showMenu()"></i>
</nav>
</header>
<section id="categories services" class="Services">
<h1 class="heading">Services</h1>
<hr>
<!-- categories names starts -->
<div class="row categories services">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 main-height">
<div class="hovereffect services_categories">
<img class="img-responsive img " src="./NAEESHOP-GIT/image/hair_cut_deals.jpeg"
alt="Hair Cut Deals images">
<div class="overlay">
<h2>Hair Cut Deals</h2>
<!-- <a class="info" href="#">Men</a> -->
</div>
</div>
<button class="btn center btn-dimension">Hair Cut Deals</button>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 main-height">
<div class="hovereffect services_categories">
<img class="img-responsive img services-img" src="./NAEESHOP-GIT/image/wax Deals.jpeg" alt="">
<div class="overlay">
<h2>Wax Deals</h2>
<!-- <a class="info" href="#">Wax</a> -->
</div>
</div>
<button class="btn center btn-dimension">Wax Deals</button>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 main-height">
<div class="hovereffect services_categories">
<img class="img-responsive img services-img" src="./NAEESHOP-GIT/image/shave or trim deals.jpeg"
alt="Shave & Trim Deals">
<div class="overlay ">
<h2>Shave & Trim Deals</h2>
<!-- <a class="info" href="#">Shave & Trim Deals</a> -->
</div>
</div>
<button class="btn center btn-dimension">Shave & Trim Deals</button>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 main-height">
<div class="hovereffect services_categories">
<img class="img-responsive img services-img" src="./NAEESHOP-GIT/image/facial.jpeg" alt="facial">
<div class="overlay">
<h2>Facial Deals</h2>
<!-- <a class="info" href="#">facial deals</a> -->
</div>
</div>
<button class="btn center btn-dimension">Facial Deals</button>
</div>
<!-- categories names starts -->
</div>
<div class="row categories services">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 main-height">
<div class="hovereffect services_categories">
<img class="img-responsive img services-img" src="./NAEESHOP-GIT/image/nail_art.jpeg"
alt="manicure deals">
<div class="overlay">
<h2>manicure Deals</h2>
<!-- <a class="info" href="#">manicure</a> -->
</div>
</div>
<button class="btn center btn-dimension">Manicure Deals</button>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 main-height">
<div class="hovereffect services_categories">
<img class="img-responsive img services-img" src="./NAEESHOP-GIT/image/hair_spa.jpeg"
alt="hair spa">
<div class="overlay">
<h2>Hair Spa Deals</h2>
<!-- <a class="info" href="#">Wax</a> -->
</div>
</div>
<button class="btn center btn-dimension">Hair Spa Deals</button>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 main-height">
<div class="hovereffect services_categories">
<img class="img-responsive img services-img" src="./NAEESHOP-GIT/image/body_massage.jpeg"
alt="body_massage">
<div class="overlay ">
<h2>Body Massage</h2>
<!-- <a class="info" href="#">Body Massage</a> -->
</div>
</div>
<button class="btn center btn-dimension">Body Massage</button>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 main-height">
<div class="hovereffect services_categories">
<img class="img-responsive img services-img" src="./NAEESHOP-GIT/image/facial.jpeg" alt="facial">
<div class="overlay">
<h2>Facial Deals</h2>
<!-- <a class="info" href="#">facial deals</a> -->
</div>
</div>
<button class="btn center btn-dimension">Facial Deals</button>
</div>
<!-- categories names starts -->
</div>
</section>
<footer>
<div id="footer-nav">
<p class="center align-text text-center"> Join now Registration open!!
</p>
<h1 class="center align-text"> Stay up-to-date with what<br> we’re doing
</h1>
<center class="contact-search"><a href=""></a><input type="email" name="email"
onclick="ChangeEmailPosition()" id="emailInput" placeholder="Enter your email addres"></a>
<button type="submit" role="button" name="subscribe now" id="subscribeNow"
onclick="ChangeSubcribeBtnPosition()" class="btn"> Subscribe Now
</button>
</center>
</div>
<div class="footer" id="bg-black">
<nav class="footer-nav">
<ul class="menu row">
<li class="menu-items"><a href="http://">Home</a></li>
<li class="menu-items"><a href="http://">Online Booking</a></li>
<li class="menu-items"><a href="http://">Home Service</a></li>
<li class="menu-items"><a href="http://">About-us</a></li>
<li class="menu-items"><a href="http://">Contact Us</a></li>
</ul>
<div class="copyrights">
<p>© 2021 STAR. All Rights Reserved. HBO, Home Box Office and all related channel and
programming logos are service marks of, and all related programming visuals and elements are
the
property of, Home Box Office, Inc.</p>
</div>
</nav>
<div class="row " id="overflow-issue">
<div class="connect-with-us">
<p>Connect With Us<br>
<a href=""><img src="./NAEESHOP-GIT/image/icon-facebook.svg" alt="Facebook logo"></a>
<a href=""><img src="./NAEESHOP-GIT/image/icon-twitter.svg" alt="Twitter logo" c></a>
<a href=""><img src="./NAEESHOP-GIT/image/icon-youtube.svg" alt="Twitter logo" c></a>
<a href=""><img src="./NAEESHOP-GIT/image/icon-pinterest.svg" alt="Twitter logo" c></a>
</p>
</div>
<div class="downloads">
<p>Get your App here 👇👇<br>
<a href=""><img src="./NAEESHOP-GIT/image/playstore.png" alt="Play Store"></a>
<a href=""><img src="./NAEESHOP-GIT/image/apple store.png" alt="Apple Store"></a>
</p>
</div>
</div>
</div>
</footer>
</body>
<script src="./NAEESHOP-GIT/main/main.js"></script>
</html>