-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
605 lines (572 loc) · 28.7 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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shakiliitju</title>
<link rel="sortcut icon" type="image" href="">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.11/typed.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" />
</head>
<body>
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<nav class="navbar">
<div class="max-width">
<div class="logo"><a href="#">Shakil<span>iitju</span></a></div>
<ul class="menu">
<li><a href="#home" class="menu-btn">Home</a></li>
<li><a href="#about" class="menu-btn">About</a></li>
<li><a href="#education" class="menu-btn">Education</a></li>
<li><a href="#certification" class="menu-btn">Certification</a></li>
<li><a href="#skills" class="menu-btn">Skills</a></li>
<li><a href="#project" class="menu-btn">Project</a></li>
<li><a href="#travelling" class="menu-btn">Travelling</a></li>
<li><a href="#contact" class="menu-btn">Contact</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<!-- home section start -->
<section class="home" id="home">
<div class="max-width">
<div class="home-content">
<div class="text-1">Hello, my name is</div>
<div class="text-2">Md. Shakil Hossain</div>
<div class="text-3">I'm a <span class="typing"></span></div>
<a href="https://sites.google.com/view/shakiliitju/home" target="_blank">Hire Me</a>
</div>
</div>
</section>
<!-- about section start -->
<section class="about" id="about">
<div class="max-width">
<h2 class="title">About Me</h2>
<div class="about-content">
<div class="column left">
<img src="images/profile-1.jpg" alt="">
</div>
<div class="column right">
<div class="text">I'm Md. Shakil Hossain and I'm a <span class="typing-2"></span></div>
<p>I am Md. Shakil Hossain from Bangladesh, Student of Institute of Information Technology at
Jahanginagar University. Graphic Design is my hobby. I really like to play with my skills &
creativity. Feel free to contact me if you have any question.</p>
<a href="#">Download CV</a>
</div>
</div>
</div>
</section>
<!-- education section start -->
<section class="education" id="education">
<div class="max-width">
<h2 class="title">Education</h2>
<div class="serv-content">
<div class="card">
<div class="box">
<h2>Bachelor of Science (B.Sc.) (Hons.) in Information and Communication Technology (ICT)</h2>
<a href="https://juniv.edu/institute/iit" target="_blank">Institute of Information
Technology</a>
<a href="https://www.juniv.edu/" target="_blank"> Jahangirnagar University</a>
<h4>Study Period : 2018 - Present</h4>
</div>
</div>
<div class="card">
<div class="box">
<h2>Higher Secondary School Certificate(H.S.C.), Science Group</h2>
<a href="https://deb108460.dhakaeducationboard.gov.bd/" target="_blank"> Jahangirnagar University
School & College</a>
<h4>Passing Year : 2017<br>Result : GPA 4.83</h4>
</div>
</div>
<div class="card">
<div class="box">
<h2>Secondary School Certificate(S.S.C), Science Group</h2>
<a href="https://www.raajrani.com/school-college/16475" target="_blank"> Kayra High School &
College</a>
<h4>Passing Year : 2015<br>Result : GPA 4.61</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Certification section start -->
<section class="certification" id="certification">
<div class="max-width">
<h2 class="title">Certification</h2>
<div class="carousel owl-carousel">
<div class="card">
<div class="box">
<img src="https://www.sololearn.com/Certificate/1014-20182210/jpg" alt="">
<div class="text">HTML</div>
<p>Issue Date: December, 2021<br>Credential ID: cert-1014-20182210</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="https://www.sololearn.com/Certificate/1023-20182210/jpg" alt="">
<div class="text">CSS</div>
<p>Issue Date: February, 2022<br>Credential ID: cert-1023-20182210</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/c2.jpg" alt="">
<div class="text">Office 365 Administration and Troubleshooting.</div>
<p>Issue Date: October, 2021<br>Credential ID: 10997 - C </p>
</div>
</div>
<div class="card">
<div class="box">
<img src="https://www.sololearn.com/certificates/course/en/20182210/1024/landscape/png" alt="">
<div class="text">JavaSCript</div>
<p>Issue Date: January, 2022<br>Credential ID: cert-20182210-1024</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/c4.jpg" alt="">
<div class="text">International Youth Math Challenge Qualification Round 2021.</div>
<p>Issue Date: October, 2021<br>Credential ID: QR-2021-EDCE2F95700</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/c1.jpg" alt="">
<div class="text">Fundamentals of Computer Network Security Specialization.</div>
<p>Issue Date: November, 2020<br>Credential ID: 82GHS4LJYN28 </p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/c6.jpg" alt="">
<div class="text">Introduction to Cybersecurity.</div>
<p>Issue Date: May, 2021</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/c7.jpg" alt="">
<div class="text"> Adobe Illustrator - Mastering the Fundamentals.</div>
<p>Issue Date: August, 2020<br>Credential ID: 32319-160-345-6690</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/c8.jpg" alt="">
<div class="text">Troubleshooting in Computer Security.</div>
<p>Issue Date: March, 2020<br>Credential ID: MC-E366832X611997X119B</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/c9.jpg" alt="">
<div class="text">Adobe Illustrator CC 2020 Masterclass.</div>
<p>Issue Date: September, 2020<br>Credential ID: UC-ab293831-8225-46ba-8c30-0f2eed1d0e83</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="https://www.sololearn.com/certificates/course/en/20182210/1060/landscape/png" alt="">
<div class="text">SQL</div>
<p>Issue Date: January, 2022<br>Credential ID: cert-20182210-1060</p>
</div>
</div>
</div>
</div>
</section>
<!-- skills section start -->
<section class="skills" id="skills">
<div class="max-width">
<h2 class="title">Skills</h2>
<div class="skills-content">
<div class="column left">
<div class="text">My creative skills & experiences.</div>
<h3>Volunteer (Sep, 2021 - Present)</h3>
<a href="https://www.assunnahfoundation.org/" target="_blank">As-Sunnah Foundation</a>
<h5>Ullapara, Sirajgonj.</h5>
<br>
<h3>Campus Ambassador (May, 2021 - Present)</h3>
<a href="https://www.facebook.com/teammatrixs?_rdc=1&_rdr" target="_blank">Team Matrix</a>
<h5>Jahangirnagar University</h5>
<h5>Savar, Dhaka.</h5>
<br>
<h3>District Ambassador (Mar, 2021 - Present)</h3>
<a href="https://blueteambd.com/" target="_blank">Blue Team Bangladesh</a>
<h5>Sirajgonj, Rajshahi.</h5>
<br>
<h3>Volunteer (Mar, 2021 - Present)</h3>
<a href="https://www.facebook.com/groups/islamicolympiadbd" target="_blank">১ম জাতীয় কুরআন
অলিম্পিয়াড-২০২১</a>
<h5>Ullapara, Sirajgonj.</h5>
<br>
<h3>Trainer (January, 2020 - March, 2020)</h3>
<a href="https://www.facebook.com/Royalstudycenter/" target="_blank">Royal study center-রয়েল'স</a>
<h5>Savar, Dhaka.</h5>
</div>
<!-- <div class="column right">
<div class="bars">
<div class="info">
<span>HTML</span>
<span>90%</span>
</div>
<div class="line html"></div>
</div>
<div class="bars">
<div class="info">
<span>CSS</span>
<span>80%</span>
</div>
<div class="line css"></div>
</div>
<div class="bars">
<div class="info">
<span>JavaScript</span>
<span>30%</span>
</div>
<div class="line js"></div>
</div>
<div class="bars">
<div class="info">
<span>MySQL</span>
<span>50%</span>
</div>
<div class="line mysql"></div>
</div>
<div class="bars">
<div class="info">
<span>Git/GitHub</span>
<span>70%</span>
</div>
<div class="line git"></div>
</div>
<div class="bars">
<div class="info">
<span>C/C++</span>
<span>90%</span>
</div>
<div class="line c"></div>
</div>
<div class="bars">
<div class="info">
<span>Java</span>
<span>80%</span>
</div>
<div class="line java"></div>
</div>
<div class="bars">
<div class="info">
<span>Python</span>
<span>50%</span>
</div>
<div class="line py"></div>
</div>
<div class="bars">
<div class="info">
<span>Matlab</span>
<span>80%</span>
</div>
<div class="line matlab"></div>
</div>
<div class="bars">
<div class="info">
<span>Photoshop</span>
<span>80%</span>
</div>
<div class="line ps"></div>
</div>
<div class="bars">
<div class="info">
<span>Illustrator</span>
<span>50%</span>
</div>
<div class="line ai"></div>
</div>
</div> -->
<div class="column right">
<div class="skills-container">
<ul>
<li class="html">HTML</li>
<li class="css">CSS</li>
<li class="js">JavaSCript</li>
<li class="mysql">MySQL</li>
<li class="git">Git/GitHub</li>
<li class="c">C/C++</li>
<li class="java">java</li>
<li class="m">Matlab</li>
<li class="ps">Photoshop</li>
<li class="ai">Illustrator</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Project section start -->
<section class="project" id="project">
<div class="max-width">
<h2 class="title">Project</h2>
<div class="carousel owl-carousel">
<div class="card">
<div class="box">
<img src="images/p1.jpg" alt="">
<div class="text">Library Management System of IIT</div>
<p>First year Final Project</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/p2.png" alt="">
<div class="text">Digital Clock Using C</div>
<p>First year First Semester Project</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/p4.jpg" alt="">
<div class="text">light blinking Arduino Project.</div>
<p></p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/p6.jpg" alt="">
<div class="text">Temperature based fan speed controller Arduino Project.</div>
<p></p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/p5.jpg" alt="">
<div class="text">Display Temperature Arduino Project.</div>
<p></p>
</div>
</div>
</div>
</div>
</section>
<!-- travelling section start -->
<section class="travelling" id="travelling">
<div class="max-width">
<h2 class="title">Travelling</h2>
<div class="card">
<div class="box">
<img src="images/1.jpg" alt="">
<div class="text">
<h2>Sajek valley</h2>
<p>Sajek valley is an emerging tourist spot in Bangladesh situated among the hills of the
Kasalong range of mountains in Sajek union, Baghaichhari Upazila in Rangamati District. The
valley is 1,476 feet (450 m) above sea level. Sajek valley is known as the Queen of Hills &
Roof of Rangamati. We stayed overnight at Darjeeling resort. We enjoyed every bit of it.
</p>
</div>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/2.jpg" alt="">
<div class="text">
<h2>St. Martin's Island</h2>
<p>St. Martin's Island is a small island in the northeastern part of the Bay of Bengal, about 9
km south of the tip of the Cox's Bazar-Teknaf peninsula, and forming the southernmost part
of Bangladesh. There is a small adjoining island that is separated at high tide, called
Chera Dwip. It is about 8 kilometres west of the northwest coast of Myanmar, at the mouth of
the Naf River. </p>
</div>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/3.jpg" alt="">
<div class="text">
<h2>Sylhet</h2>
<p>Sylhet is known for its tea-gardens and natural resources. We stayed 3 days in sylhet. We
visited Bichnakandi, Ratargul Swamp Forest, sada pathor volagonj, Lakkatura Tea Garden,
Shahjalal University of Science and Technology (SUST) and many other places. It was a tour
to be remembered forever. </p>
</div>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/4.jpg" alt="">
<div class="text">
<h2>Cox's Bazaar</h2>
<p>Cox's Bazaar is known for its wide and long sandy beach, which is considered by many as the
world's longest natural sandy sea beach. We visited cox's bazar sea beach, laboni beach,
Himchari Hilltop, Himchari waterfall, Inani Beach and many other places. I have visited
these beautiful places more than once and every time I go there these places surprise me
with new exposure of natural beauty.</p>
</div>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/5.jpg" alt="">
<div class="text">
<h2>National Martyrs' Memorial</h2>
<p>National Martyrs' Memorial is the national monument of Bangladesh, set up in the memory of
those who died in the Bangladesh Liberation War of 1971, which brought independence and
separated Bangladesh from Pakistan. The monument is located in Savar, about 35 km north-west
of the capital, Dhaka. It was designed by Syed Mainul Hossain and built by Concord Group.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="travelling" id="travelling">
<div class="max-width">
<h2 class="title">Travelling</h2>
<div class="carousel owl-carousel">
<div class="card">
<div class="box">
<img src="images/1.jpg" alt="">
<div class="text">Sajek valley</div>
<p>Sajek valley is an emerging tourist spot in Bangladesh situated among the hills of the
Kasalong range of mountains in Sajek union, Baghaichhari Upazila in Rangamati District. The
valley is 1,476 feet (450 m) above sea level. Sajek valley is known as the Queen of Hills &
Roof of Rangamati. We stayed overnight at Darjeeling resort. We enjoyed every bit of it.
</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/2.jpg" alt="">
<div class="text">St. Martin's Island</div>
<p>St. Martin's Island is a small island in the northeastern part of the Bay of Bengal, about 9
km south of the tip of the Cox's Bazar-Teknaf peninsula, and forming the southernmost part
of Bangladesh. There is a small adjoining island that is separated at high tide, called
Chera Dwip. It is about 8 kilometres west of the northwest coast of Myanmar, at the mouth of
the Naf River. </p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/3.jpg" alt="">
<div class="text">Sylhet</div>
<p>Sylhet is known for its tea-gardens and natural resources. We stayed 3 days in sylhet. We
visited Bichnakandi, Ratargul Swamp Forest, sada pathor volagonj, Lakkatura Tea Garden,
Shahjalal University of Science and Technology (SUST) and many other places. It was a tour
to be remembered forever. </p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/4.jpg" alt="">
<div class="text">Cox's Bazaar</div>
<p>Cox's Bazaar is known for its wide and long sandy beach, which is considered by many as the
world's longest natural sandy sea beach. We visited cox's bazar sea beach, laboni beach,
Himchari Hilltop, Himchari waterfall, Inani Beach and many other places. I have visited
these beautiful places more than once and every time I go there these places surprise me
with new exposure of natural beauty.</p>
</div>
</div>
<div class="card">
<div class="box">
<img src="images/5.jpg" alt="">
<div class="text">National Martyrs' Memorial</div>
<p>National Martyrs' Memorial is the national monument of Bangladesh, set up in the memory of
those who died in the Bangladesh Liberation War of 1971, which brought independence and
separated Bangladesh from Pakistan. The monument is located in Savar, about 35 km north-west
of the capital, Dhaka. It was designed by Syed Mainul Hossain and built by Concord Group.
</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- travelling section end -->
<!-- contact section start -->
<section class="contact" id="contact">
<div class="max-width">
<h2 class="title">Contact Me</h2>
<div class="contact-content">
<div class="column left">
<div class="text">Get in Touch</div>
<p>Feel free to contact me if you have any question.</p>
<div class="icons">
<div class="row">
<i class="fas fa-user"></i>
<div class="info">
<div class="head">Name</div>
<div class="sub-title">Md. Shakil Hossain</div>
</div>
</div>
<div class="row">
<i class="fas fa-map-marker-alt"></i>
<div class="info">
<div class="head">Address</div>
<div class="sub-title">Jahangirnagar University, Savar, Dhaka</div>
</div>
</div>
<div class="row">
<i class="fas fa-phone-alt"></i>
<div class="info">
<div class="head">Phone</div>
<div class="sub-title">+8801796963444</div>
</div>
</div>
<div class="row">
<i class="fas fa-envelope"></i>
<div class="info">
<div class="head">Email</div>
<div class="sub-title">[email protected]</div>
</div>
</div>
</div>
</div>
<div class="column right">
<div class="text">Message me</div>
<form action="insert.php" method="post">
<div class="fields">
<div class="field name">
<input type="text" placeholder="Name" name="cname" required>
</div>
<div class="field email">
<input type="email" placeholder="Email" name="email" required>
</div>
</div>
<div class="field">
<input type="text" placeholder="Subject" name="subjects" required>
</div>
<div class="field textarea">
<textarea cols="30" rows="10" placeholder="Message" name="messages" required></textarea>
</div>
<div class="button-area">
<!-- <input type="submit" placeholder="Send Message" name="submit"> -->
<button type="submit" name="save">Send message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- footer section start -->
<footer>
<span>Created By<b> <a href="#about">Md. Shakil Hossain</a></b> | <span class="far fa-copyright"></span> 2022 All rights reserved.</span>
<div class="footer-col">
<div class="social-links">
<a href="https://www.facebook.com/shakiliitju/" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://github.com/shakiliitju" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://shakiliitju.blogspot.com/" target="_blank"><i class="fab fa-blogger"></i></a>
<a href="https://www.behance.net/shakiliitju" target="_blank"><i class="fab fa-behance"></i></a>
<a href="https://twitter.com/shakiliitju" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/shakiliitju/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/md-shakil-hossain/" target="_blank"><i
class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>