-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
356 lines (340 loc) · 10.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shikhbe Shobai | Home</title>
<!-- style.css linking here -->
<link rel="stylesheet" href="css/style.css">
<!-- font-awesome.css linking here -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"/>
<!-- icon linking here -->
<link rel="icon" type="image" href="Shikhbe-shobai-logo.ico">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
</head>
<body>
<!-- header start -->
<header class="header">
<nav class="fixed-top">
<div class="container">
<div class="inner-header">
<div class="logo">
<a href="index.html">
<img src="Images/Shikhbe-shobai-logo.png" alt="">
</a>
</div>
<ul class="navbar">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Courses</a>
</li>
<li>
<a href="#">About Us</a>
</li>
<li>
<a href="#">SS Junior</a>
</li>
<li>
<a href="#">Events</a>
</li>
<li>
<a href="#">Community</a>
</li>
<li>
<a href="#">LIVE</a>
</li>
</ul>
<div class="buttongroup">
<a href="#" class="btn-primary"><i class="fa fa-sign-in"></i> Signin</a>
<a href="#" class="btn-primary"><i class="fa fa-user-plus"></i> Signup</a>
</div>
</div>
</div>
</nav>
</header>
<!-- header end -->
<!-- Banner section start -->
<section class="banner">
<div class="container">
<div class="inner-banner">
<div class="banner-text">
<h1>Change Your Life with Shikhbe Shobai</h1>
<h4>Shikhbe Shobai teaches you the skills you need to<br>thrive and earn online - now and in the future.</h4>
<a href="#" class="btn-primary">View Courses</a>
</div>
<div class="banner-img">
<img src="Images/intro.png" alt="" class="img-fluid">
</div>
</div>
</div>
</section>
<!-- Banner section end -->
<!-- feature section strt -->
<section class="feature">
<div class="container">
<div class="inner-feature">
<div class="feature-box bg-1">
<div class="icon">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="content">
<h4>12,300+ Graduates</h4>
<p>Shikhbe Shobai has trained 14800+ trainees so far. And it's increasing everyday.</p>
</div>
</div>
<div class="feature-box bg-2">
<div class="icon">
<i class="fa fa-usd"></i>
</div>
<div class="content">
<h4>$17,00,000+ Earned</h4>
<p>Our students has reached the combined earning of $1 million (USD) so far.</p>
</div>
</div>
<div class="feature-box bg-3">
<div class="icon">
<i class="fa fa-users"></i>
</div>
<div class="content">
<h4>5,50,000+ Members</h4>
<p>Over 425K+ people are connected with us through social media and supporting our mission.</p>
</div>
</div>
</div>
</div>
</section>
<!-- feature section end -->
<!-- service section start -->
<section class="Service">
<div class="container">
<div class="Inner-Service">
<div class="Service-text">
<span>Projects</span>
<h2>Project Based<br>Learning</h2>
<p>Shikhbe Shobai provides 100% project oriented training. It <br> means you will do real time client's projects as your <br> assignments. Mentors will make you involved in dealing <br>with the real client's experience.</p>
<a href="#" class="btn-primary">View Courses</a>
</div>
<div class="Service-img">
<img src="Images/image2.png" alt="" class="img-fluid">
</div>
</div>
</div>
</section>
<section class="Service1">
<div class="container">
<div class="Inner-Service1">
<div class="service-img1">
<img src="Images/Support.png" alt="" class="img-fluid">
</div>
<div class="Service-text1">
<span>Get help</span>
<h2>Lifetime Free<br>Support</h2>
<p>During the training and after the training, Shikhbe Shobai<br>provides offline and online support to all of their students<br>whenever needed. And it's free for the lifetime!</p>
<a href="#" class="btn-primary">Get Support</a>
</div>
</div>
</div>
</section>
<section class="Service2">
<div class="container">
<div class="Inner-Service2">
<div class="Service-text2">
<span>Earning</span>
<h2>Learn to Earn</h2>
<p>The goal of our training is to make you able to earn. Our students: work in online freelancing marketplaces such as Upwork, Fiverr etc, do remote jobs in international companies, do local jobs in good companies.</p>
<a href="#" class="btn-primary">View Courses</a>
</div>
<div class="Service-img2">
<img src="Images/image3.png" alt="" class="img-fluid">
</div>
</div>
</div>
</section>
<section class="Service3">
<div class="container">
<div class="Inner-Service3">
<div class="Service-img3">
<img src="Images/Card-Mockup.png" alt="" class="img-fluid">
</div>
<div class="Service-text3">
<span>Shikhbe Shobai</span>
<h2>Privilege card</h2>
<p>Shikhbe Shobai has introduced a new service from October 1, 2021, in association with various restaurant, Life style company, Tech company and Bank Asia Ltd. The Privilege card by Shikhbe Shobai Solutions discounts and benefits across a wide range of categories such as dining, life Style, Hotels, Educational institution, Banking service as well as shopping.</p>
<a href="#" class="btn-primary">See Details</a>
</div>
</div>
</div>
</section>
<!-- service section end -->
<!-- features strt -->
<section class="features">
<div class="container">
<div class="Inner-feature1">
<div class="title">
<h2>How To Change Your Life?</h2>
</div>
<div class="feature1-img">
<img src="Images/tab-1.png" alt="">
</div>
</div>
</div>
</section>
<section class="features2">
<div class="container">
<div class="Inner-feature2">
<a href="#" class="feature-box1 cl-1">
<div class="icon1">
<i class="fa fa-book"></i>
</div>
<div class="feature2-text">
<strong>Develop Your Skillset</strong>
<p>Learn more about what hard<br>skills and soft skills to put on <br>a resume so it stands out<br>from the others.</p>
</div>
</a>
<a href="#" class="feature-box1 cl-2">
<div class="icon1">
<i class="fa fa-anchor"></i>
</div>
<div class="feature2-text">
<strong>Prepare Portfolio</strong>
<p>A portfolio is a collection of <br>your best works samples that <br> can illastrate your skill and<br>expertise in perticuler domain.</p>
</div>
</a>
<a href="#" class="feature-box1 cl-3">
<div class="icon1">
<i class="fa fa-comments"></i>
</div>
<div class="feature2-text">
<strong>Soft Skills and Freelancing</strong>
<p>Soft skills like communication,<br>thinking creatively,and all <br> have their place in the work<br> environment.</p>
</div>
</a>
<a href="#" class="feature-box1 cl-4">
<div class="icon1">
<i class="fa fa-user-secret"></i>
</div>
<div class="feature2-text">
<strong>Manage Your Client</strong>
<p>Client management systems <br>allow bussiness to seamlessly <br> manage their relationship with <br>potential customers.</p>
</div>
</a>
</div>
</div>
</section>
<!-- features end -->
<!-- successfull-stories strt -->
<section class="successfull-stories">
<div class="container">
<div class="successfull-story">
<div class="text-quote">
<img src="Images/quote.png" alt="">
<h2 class="title">Success Stories</h2>
<p>Coming from all walks of life, our graduates <br> have something in common: they decided to <br> learn with us to pursue their dreams.</p>
<a href="#" class="btn-primary">See All Success Stories</a>
</div>
<div class="avater">
<img src="Images/under-construction.png" alt="">
</div>
</div>
</div>
</section>
<!-- successfull-stories end -->
<!-- Addressbar strt -->
<section class="Addressbar">
<div class="container">
<div class="Addresses">
<div class="banani">
<h2>Head Office - Banani Branch</h2>
<p>House# 74 Road# 7, <br>
Block# H, Banani, Dhaka-1213 <br>
Phone: 01758066329, 01758066325, 01872650686,<br>01872657169</p>
</div>
<div class="Mirpur">
<h2>Branch Office - Mirpur Branch</h2>
<p>HB Enterprise Bhaban. <br>
Plot-9, Road-4, Section -7, <br>
Mirpur-Dhaka 1216 <br>
Phone: 01872650688, 01872657167, 01872650685</p>
</div>
</div>
</div>
</section>
<!-- Addressbar end -->
<!-- footer strt -->
<footer class="footertop">
<div class="container">
<div class="innerfooter">
<div class="footertext">
<h5>Shikhbe Shobai</h5>
<p>Shikhbe Shobai teaches you the <br> skills you need to thrive and earn <br> online - now and in the future.</p>
</div>
<div class="footertext">
<h5>Let's Connect</h5>
<p>Shikhbe Shobai Facebook Page Freelancers Community Graphic Designers Group Web Designers Group Online Support</p>
</div>
<div class="footertext">
<h5>Useful Links</h5>
<ul class="listmenu">
<li>
<a href="#">All Courses</a>
</li>
<li>
<a href="#">Support</a>
</li>
<li>
<a href="#">Contact</a>
</li>
<li>
<a href="#">Privacy Policy</a>
</li>
<li>
<a href="#">Terms & Conditions</a>
</li>
<li>
<a href="#">Return & Refund Policy</a>
</li>
</ul>
</div>
<div class="footertext">
<h5>Social Links</h5>
<ul class="listmenu">
<li>
<a href="#">Facebook</a>
</li>
<li>
<a href="#">Linkedin</a>
</li>
<li>
<a href="#">Instagram</a>
</li>
<li>
<a href="#">Youtube</a>
</li>
</ul>
</div>
</div>
</div>
<div class="footerbottom">
<div class="container">
<div class="footerlink">
<div class="footerimg">
<img src="Images/ssl_logo.png" alt="">
</div>
</div>
</div>
</div>
</footer>
<!-- footer end -->
<div class="copyright">
<div class="container">
<div class="copyrighttext">
<div class="copytext">
<p>2023 Copyright ©<span>Sayeeda Saima Akhtar Rafia, </span> All rights Reserved.</p>
</div>
</div>
</div>
</div>
</body>
</html>