-
Notifications
You must be signed in to change notification settings - Fork 0
/
barber.html
260 lines (238 loc) · 9.84 KB
/
barber.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="../barber/css/barber.css">
<link rel="stylesheet" href="../barber/assets/css/all.min.css">
<link rel="stylesheet" href="../barber/assets/fontawesome-free-6.4.0-web/css/all.min.css">
<link rel="stylesheet" href="../barber/assets/fontawesome-free-6.4.0-web/sprites/brands.svg">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css"> -->
<!-- <link rel="stylesheet" href="..//barber/assets/fonts/Flaticon.svg"> -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll/dist/smooth-scroll.polyfills.min.js"></script>
<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>Document</title>
</head >
<body>
<section id="banner">
<img src="../barber/img/scissors1.png" alt="" class="logo">
<div class="banner-text">
<h1>Hair Studio</h1>
<p>Style your hair is style your life</p>
<div class="banner-btn">
<a href="#"><span></span>Find out</a>
<a href="#"><span></span>Read more</a>
</div>
</div>
</section>
<div id="sideNav">
<nav>
<ul>
<li><a href="#banner">HOME</a></li>
<li><a href="#features">FEATURES</a></li>
<li><a href="#service">SERVICES</a></li>
<li><a href="#testimonial">TESTIMONIALS</a></li>
<li><a href="#footer">MEET US</a></li>
</ul>
</nav>
</div>
<div id="menubar">
<img src="../barber/img/menubar.png" id="menu">
</div>
<!--features start-->
<section id="features">
<div class="title-text">
<p>FEATURES</p>
<h1>Why Choose Us</h1>
</div>
<div class="feature-box">
<div class="features">
<h1>Experienced staff</h1>
<div class="features-desc">
<div class="features-icon">
<i class="fa fa-shield"></i>
</div>
<div class="features-text">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime,
asperiores. Ratione, aliquam voluptatibus!</p>
</div>
</div>
<h1>Pre Booking Online</h1>
<div class="features-desc">
<div class="features-icon">
<i class="fa fa-check-square"></i>
</div>
<div class="features-text">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime,
asperiores. Ratione, aliquam voluptatibus!</p>
</div>
</div>
<h1>Affordable Cost</h1>
<div class="features-desc">
<div class="features-icon">
<i class="fa fa-inr"></i>
</div>
<div class="features-text">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime,
asperiores. Ratione, aliquam voluptatibus!</p>
</div>
</div>
</div>
<div class="features-img">
<img src="../barber/img/baber1.jpg" alt="">
</div>
</div>
</section>
<!-- features start -->
<!-- service start-->
<section id="service">
<div class="title-text">
<p>SERVICES</p>
<h1>We provide Better</h1>
</div>
<div class="service-box">
<div class="single-service">
<img src="../barber/img/1024.jpg">
<div class="overlay"></div>
<div class="service-desc">
<h3>Hair styling</h3>
<hr>
<p>this is test under description of barber foundation
this is the test under description of the barber foundation
</p>
</div>
</div>
<div class="single-service">
<img src="../barber/img/850.jpg">
<div class="overlay"></div>
<div class="service-desc">
<h3>Beard Trim</h3>
<hr>
<p>this is test under description of barber foundation
this is the test under description of the barber foundation
</p>
</div>
</div>
<div class="single-service">
<img src="../barber/img/luda.jpg">
<div class="overlay"></div>
<div class="service-desc">
<h3>Hair Cut</h3>
<hr>
<p>this is test under description of barber foundation
this is the test under description of the barber foundation
</p>
</div>
</div>
<div class="single-service">
<img src="../barber/img/hair8.jpg">
<div class="overlay"></div>
<div class="service-desc">
<h3>Dry Shampoo</h3>
<hr>
<p>this is test under description of barber foundation
this is the test under description of the barber foundation
</p>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- Testimonial start -->
<section id="testimonial">
<div class="title-text">
<p>TESTIMONIALS</p>
<h1>What Client Says</h1>
</div>
<div class="testimonial-row">
<div class="testimonial-col">
<div class="user">
<img src="../barber/img/barber9.jpg" alt="">
<div class="user-info">
<h4>Joy Carne <i class="fa-brands fa-twitter"></i></h4>
<small>@Joycarne</small>
</div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Delectus magni ipsum, hic consequatur quod sint?
</p>
</div>
<div class="testimonial-col">
<div class="user">
<img src="../barber/img/barber0.jpg" alt="">
<div class="user-info">
<h4>Beau carnes <i class="fa-brands fa-twitter"></i></h4>
<small>@Beaucarne</small>
</div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Delectus magni ipsum, hic consequatur quod sint?
</p>
</div>
<div class="testimonial-col">
<div class="user">
<img src="../barber/img/barber8.jpg" alt="">
<div class="user-info">
<h4>John Doe <i class="fa-brands fa-twitter"></i></h4>
<small>@JohnDoe</small>
</div>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Delectus magni ipsum, hic consequatur quod sint?
</p>
</div>
</div>
</section>
<!-- testimonial end -->
<!-- footer -->
<section id="footer">
<img src="../barber/img/barber1footer.png" class="footer-img">
<div class="title-text">
<p>CONTACT</p>
<h1>Visit Shop Today</h1>
</div>
<div class="footer-row">
<div class="footer-left">
<h1>Opening Hours</h1>
<p><i class="fa fa-clock"></i> Monday to Friday - 9am to 9pm</p>
<p><i class="fa fa-clock"></i>Saturday to Sunday - 8am to 11pm</p>
</div>
<div class="footer-right">
<h1>Get In Touch</h1>
<p>#15 olowu street Elekahia, Ph city<i class="fa fa-map-marker"></i></p>
<p>[email protected]<i class="fa fa-paper-plane"></i></p>
<p></i>+2348148905993<i class="fa fa-phone"></i></p>
</div>
</div>
<div class="social-links">
<i class="fa-brands fa-facebook" aria-hidden="true"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-youtube"></i>
<p>Copyright Easy Tutorial By Newman</p>
</div>
</section>
<script>
var menubar = document.getElementById("menubar")
var sideNav = document.getElementById("sideNav")
var menu = document.getElementById("menu")
sideNav.style.right = "-250px"
menubar.onclick = function(){
if(sideNav.style.right == "-250px"){
sideNav.style.right = "0";
menu.src = "../barber/img/close.png";
}
else{
sideNav.style.right = "-250px";
menu.src = "../barber/img/menubar.png";
}
}
var scroll = new SmoothScroll('a[href*="#"]', {
speed: 1000,
speedAsDuration: true
});
</script>
</body>
</html>