-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
378 lines (322 loc) · 12.3 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
<!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="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<title>DOBU</title>
<!--Custom Css Link-->
<link rel="stylesheet" href="style.css">
<!-- Fontawsome cdn file link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!--Footer-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.site-footer
{
background-color:#ffffff;
padding:150px 0 80px;
font-size:18px;
line-height:24px;
color:#040404;
margin-top: 50px;
box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .7);
}
.site-footer .social-icons
{
text-align:right
}
.site-footer .social-icons a
{
width:50px;
height:50px;
line-height:20px;
margin-left:5px;
margin-right:0;
border-radius:100%;
background-color:#33353d
}
.social-icons
{
padding-left:0;
margin-bottom:0;
margin-top: -20px;
list-style:none
}
.social-icons li
{
display:inline-block;
margin-bottom:9px;
}
.social-icons a{
background-color:#eceeef;
color:#818a91;
font-size:16px;
display:inline-block;
line-height:44px;
width:40px;
height:40px;
text-align:center;
margin-right:8px;
border-radius:100%;
-webkit-transition:all .2s linear;
-o-transition:all .2s linear;
transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
color:#fff;
background-color:#29aafe
}
.social-icons a.facebook:hover
{
background-color:#3b5998
}
.social-icons a.twitter:hover
{
background-color:#00aced
}
.social-icons a.linkedin:hover
{
background-color:#007bb6
}
.social-icons a.dribbble:hover
{
background-color:#ea4c89
}
/*Sperating part*/
/* Copy text for style */
.copytext{
text-align: center;
margin-top: 5rem;
margin-bottom: -800px;
}
.copyright-text{
text-align: center;
}
.social-icons-text{
text-align: center;
margin-left: 90px;
}
</style>
</head>
<body>
<!-- Header section starts -->
<header class="header">
<a href="a" class="logo">Do<span>bu</span></a>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li>
<a href="#">Class Offer <i class="fa-sharp fa-solid fa-caret-down"></i></a>
<ul class="dropdown">
<li><a href="martial_art.html">Martial Art</a></li>
<li><a href="fitness.html">Fitness Class</a></li>
</ul>
</li>
<li>
<a href="#">Membership-Offer <i class="fa-sharp fa-solid fa-caret-down"></i></a>
<ul class="dropdown">
<li><a href="levelClass.html">Level Class</a></li>
<li><a href="specialistClass.html">Specialist Class</a></li>
</ul>
</li>
<li><a href="aboutUs.html">About us</a></li>
<li><a href="contactUs.html">Contact us</a></li>
<li><a href="register.html">Register</a></li>
</ul>
<div class="icons">
<a href="#" class="btn">Become a member</a>
<div id="menu-btn" class="fas fa-bars"></div>
</div>
</header>
<!-- Header section end -->
<!-- Home section starts-->
<section class=" home">
<div class="swiper home-slider">
<div class="swiper-wrapper">
<div class=" swiper-slide box" style="background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)), url('images/home-1.jpg');">
<div class="content">
<h2>Join Our DOBU Martial Arts Today</h2>
<p>Start your learning journey about Martial Arts with us.</p>
<div class="button">
<a href="#" class="btn btn-1">get started</a>
<a href="#" class="btn">download</a>
</div>
</div>
</div>
<div class="swiper-slide box" style="background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)), url('images/home-2.jpg');">
<div class="content">
<h2>Join Our DOBU Martial Arts Today</h2>
<p>Start your learning journey about Martial Arts with us.</p>
<div class="button">
<a href="#" class="btn btn-1">get started</a>
<a href="https://www.bing.com/search?q=microsoft+store+download&qs=SS&pq=microsoft+store&sc=10-15&cvid=801281CA6D344C6085E183DF9E9552DB&FORM=QBRE&sp=1&lq=0" class="btn">
download
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Home section end-->
<!-- Feature Section Start-->
<section class="feature">
<h1 class="heading">Popular <span>Classes</span></h1>
<div class="swiper feature-slider">
<div class="swiper-wrapper">
<div class="swiper-slide box">
<div class="image">
<a href="register.html"><img src="images/feature-imgjudo.jpg" alt=""></a>
</div>
<div class="content">
<div class="price">$29.9</div>
<h3>Judo Class</h3>
</div>
</div>
<div class="swiper-slide box">
<div class="image">
<a href="register.html"><img src="images/feature-imgbox.jpg" alt=""></a>
</div>
<div class="content">
<div class="price">$35</div>
<h3>Boxing Class</h3>
</div>
</div>
<div class="swiper-slide box">
<div class="image">
<a href="register.html"><img src="images/feature-imgJuJu.jpg" alt=""></a>
</div>
<div class="content">
<div class="price">$50</div>
<h3>Jiu-Jitsu Class</h3>
</div>
</div>
<div class="swiper-slide box">
<div class="image">
<a href="register.html"><img src="images/feature-tawkwondo.jpg" alt=""></a>
</div>
<div class="content">
<div class="price">$69.9</div>
<h3>Tawkwondo Class</h3>
</div>
</div>
<div class="swiper-slide box">
<div class="image">
<a href="register.html"><img src="images/feature-wrestling.jpg" alt=""></a>
</div>
<div class="content">
<div class="price">$80</div>
<h3>Wrestling Class</h3>
</div>
</div>
<div class="swiper-slide box">
<div class="image">
<a href="register.html"><img src="images/feature -Muay Thai .png" alt=""></a>
</div>
<div class="content">
<div class="price">$99.9</div>
<h3>Muay Thai Class</h3>
</div>
</div>
</div>
</div>
</section>
<!-- Feature Section End-->
<!--Review Part start-->
<section class="reivew">
<h1 class="heading">Review From The Clients or Students</h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/ppl1.png" alt="">
</div>
<div class="name">
<h1>Mg Kaung</h1>
<p>Client or Students from DOBU.</p>
</div>
<p>
I took the Tawkwondo Class from the DOBU Martial Art Class. That class is really effective for me and also, all
of the instructor or trainer teach us really good way. They also help us how to get the strong mental and physical
that is why if u interest about the Martial art then DOBU is the right place for you. I do highly recommend the DOBU Martial Art and fitness class.
</p>
</div>
<div class="box">
<div class="image">
<img src="images/smileGirl.jpg" alt="">
</div>
<div class="name">
<h1>Hazel</h1>
<p>Client or Students from DOBU.</p>
</div>
<p>
I took the Fitness Class from the DOBU Martial Art. That class is really effective for me and also, all
of the trainer teach me how to do work out properly. They also help me how to get the strong mental and physical
that is why if u interest about fitness or if u want to get really big muscle then DOBU is the right place for you.
I do highly recommend the DOBU Martial Art and fitness class.
</p>
</div>
<div class="box">
<div class="image">
<img src="images/smileBoy.jpg" alt="">
</div>
<div class="name">
<h1>Alexder Xhaka</h1>
<p>Client or Students from DOBU.</p>
</div>
<p>
I took the Wrestling Class from the DOBU Martial Art Class. That class is really effective for me and also, all
of the instructor or trainer teach me really good way. They also help me how to play the Wrestling properly
that is why if u interest about the Wrestling then DOBU is the right place for you.
I do highly recommend the DOBU Martial Art and fitness class. Thanks DOBU
</p>
</div>
</div>
</section>
<!--Review Part end-->
<!--Text and register page start-->
</section>
<section id="newletter" class="section-p1 section-m1">
<div class="newstext">
<h4>Register Now!</h4>
<p>Get E-mail updates about our latest Course and <span>special offer</span> </p>
</div>
<div class="form">
<input type="text" placeholder="Your email addresss..">
<a href="#"></a><button class="normal">Register</button></a>
</div>
</section>
<!--Text and register page end-->
<!--Footer part start-->
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-md-6 ">
<p class="copyright-text">This website is made by (Kyaw San Maung).
</p>
</div>
<div class="col-md-6" >
<ul class="social-icons">
<span class="social-icons-text">Social Media of DOBU : </span>
<li><a href="https://www.facebook.com/index.php" class="fa fa-facebook facebook"></a></li>
<li><a href="https://twitter.com/" class="fa fa-twitter twitter"></a></li>
<li><a href="https://www.linkedin.com/feed/" class="fa fa-linkedin linkedin"></a></li>
<li><a href="https://www.instagram.com/" class="fa fa-instagram dribbble"></a></li>
</ul>
</div>
</div>
<div class="copytext">
<p>© 2023 Educlaas From Myanmar</p>
</div>
</div>
</footer>
<!---Footer part end-->
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<!-- Custom Js File -->
<script src="script.js"></script>
</body>
</html>