-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
449 lines (329 loc) · 15.6 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="/img/sq.jpg">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<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=Red+Hat+Mono&family=Roboto:ital,wght@0,100;1,300&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/css/style.css">
<title>Ferdaus Zaman Polok</title>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- This is banner section -->
<section class="banner-container container-fluid">
<div class="row vh-100">
<div class="col-md-9 banner-column m-auto text-center p-3 p-4">
<img id="roundimg" src="/img/round.png" class="image-fluid" alt="">
<h1 class="display-6 fw-bold" style="margin-top: 10px;"> <span id="fzp"> Ferdaus Zaman Polok </span> </h1>
<h2 id="subtitlee" class="display-7">Learner, Tech Enthusiast</h2>
<div class="social-links">
<a href="https://www.youtube.com/channel/UCyv2_DyMD28CWekJOdFXPLw " target="blank"><i class="fa fa-youtube-play"></i></a>
<a href="https://www.facebook.com/ferdaus.zaman.98/"><i class="fa fa-facebook" target="blank"></i></a>
<a href="https://github.com/FerdausPolok" target="blank"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/ferdauspolok/"><i class="fa fa-linkedin" target="blank"></i></a>
<a href="https://www.behance.net/ferdauspolok" target="blank"><i class="fa fa-behance"></i></a>
<a href="https://www.flickr.com/photos/148779342@N05/ " target="blank"><i class="fa fa-flickr"></i></a>
</div>
</div>
</div>
</section>
<!-- This is Navbar section -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-container">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav m-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#education">EDUCATION</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">PROJECTS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">CONTACT</a>
</li>
</ul>
</div>
</nav>
<div class="about-container" id="about">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<div class="section-title">
<h2>About Me</h2>
</div>
<h2 class="fw-bold">Hi! I'm Ferdaus Zaman <span id="polok">Polok</span></h2>
<p style="text-align:justify">I'm a professional Graphic Designer, have done 100+ Projects on Upwork,
99designs, facebook till now.
Besides Graphic design, as I am a student of CSE Dept. Therefore, i'm also very interested in Programming
and trying to learn different things day by day.
I know the basic of C, Java, Python, HTML, CSS and Java Script. Currently i am working on some Android
based Projects. Besides all of these I'm also a content Creator. I own a Youtube
Channel called "64 Bit School" where i make tech based Video tutorials.
On my free times i love to do Photography, Gaming and Graffiti arts.
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Non dignissimos ea ex blanditiis quo. Eius
voluptates iusto neque nesciunt beatae, quo alias cumque exercitationem fuga deleniti molestiae, voluptate
nostrum autem.
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eveniet quos, labore perspiciatis facilis
accusantium non incidunt ab ratione ipsam libero. </p>
</div>
<div class="col-md-6 align-items-center">
<div class="skills ">
<div class="row d-flex ">
<div class="skill-item ">
<h2 id="sas" class="section-title">My Skills</h2>
<h5>C, Java, Python Programming Languages</h5>
<div class="progress">
<div class="progress">
<div class="bg-red progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"></div>
</div>
</div>
</div>
<div class="skill-item">
<h5>Android Studio</h5>
<div class="progress">
<div class="bg-red progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%"></div>
</div>
</div>
<div class="skill-item">
<h5>Firebase, MySQL </h5>
<div class="progress">
<div class="bg-red progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"></div>
</div>
</div>
<div class="skill-item">
<h5>HTML, CSS, Bootstrap </h5>
<div class="progress">
<div class="bg-red progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"></div>
</div>
</div>
<div class="skill-item">
<h5>Adobe Photoshop, Illustrator, Premiere Pro </h5>
<div class="progress">
<div class="bg-red progress-bar progress-bar-striped progress-bar-animated" role="progressbar"
aria-valuenow="60" aria-valuemin="0" aria-valuemax="78" style="width: 78%"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- This is Education section -->
<div class="education-container pb-5" id="education">
<div class="container">
<div class="row">
<div class="col-6 mt-4">
<h2 class="fw-bold">Education</h2>
<div class="box">
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> 2017 - 2021
</h6>
<h4 class="timeline-title">Bachelor of Computer Science and Engineering</h4>
<p class="timeline-text">
Institute: Daffodil International University</p>
<p class="timeline-text">
Result: 3.75 out of 4.00</p>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> 2017 - 2021
</h6>
<h4 class="timeline-title">Higher Secondary School Certificate</h4>
<p class="timeline-text">
Institute: BCIC School and College</p>
<p class="timeline-text">
Result: 5.00 out of 5.00</p>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> 2017 - 2021
</h6>
<h4 class="timeline-title">Secondary School School Certificate</h4>
<p class="timeline-text">
Institute: BCIC School and College</p>
<p class="timeline-text">
Result: 5.00 out of 5.00</p>
</div>
</div>
<div class="col-6 mt-4">
<h2 class="fw-bold">Experience</h2>
<div class="box">
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> Dec 2021 - Present
</h6>
<h4 class="timeline-title">CustomKid</h4>
<p class="timeline-text">
Job Title: Modification Specialist</p>
<p class="timeline-text">
Specific Work: Graphic Design, PC Modding, Generating Idea, etc.</p>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> June 2021 - November 2021
</h6>
<h4 class="timeline-title">Apple Gadgets Ltd.</h4>
<p class="timeline-text">
Job Title: Junior Data Analysis</p>
<p class="timeline-text">
Specific Work: Market Data Analysis, Brand-Category Management, etc.</p>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> 2017- 2019
</h6>
<h4 class="timeline-title">Upwork</h4>
<p class="timeline-text">
Job Title: Freelance Graphic Designer</p>
<p class="timeline-text">
Specific Work: All kind of 2D Graphic Design.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- This is Project section -->
<div class="project-container" id="projects">
<div class="container">
<h2 class="fw-bold text-center text-white pt-5">Projects</h2>
<div class="row p-4 ">
<div class="col-md-4 p-4" id="c">
<div class="card text-center m-auto" style="width: 18rem;">
<img src="/img/ja.jpg" class="card-img-top img-fluid" alt="...">
<div class="card-body">
<h5 class="card-title fw-bold">Jungle Advanture</h5>
<p class="card-text">A simple ‘Chose your own’ text & audio based game developed with
python especially for 6-10 years old kids.</p>
<p class="card-text fw-bold">Technology Used: Python Basic Logical codes</p>
<p class="card-text "></p>
<a href="https://github.com/FerdausPolok/Jungle-Advanture" target="blank" class="btn btn-primary">View on
Github</a>
</div>
</div>
</div>
<div class="col-md-4 p-4" id="c">
<div class="card text-center m-auto" style="width: 18rem;">
<img src="/img/dk.jpg" class="card-img-top img-fluid" alt="...">
<div class="card-body">
<h5 class="card-title fw-bold">DamKoto</h5>
<p class="card-text">An android application that can tell different gadget’s (Mobile, Cam,
Drone) current market price including shopwise price.
</p>
<p class="card-text fw-bold">Technology Used: Android, JAVA, XML, Firebase</p>
<p class="card-text "></p>
<a href="https://sites.google.com/diu.edu.bd/damkotoptp" target="blank" class="btn btn-primary">View
Google Site</a>
</div>
</div>
</div>
<div class="col-md-4 p-4" id="c">
<div class="card text-center m-auto" style="width: 18rem;">
<img src="/img/oti.jpg" class="card-img-top img-fluid" alt="...">
<div class="card-body">
<h5 class="card-title fw-bold">Otithi Khata</h5>
<p class="card-text">An Android app developed with JAVA which can store guest information
in My SQL Database.</p>
<p class="card-text fw-bold">Technology Used: JAVA, Android, MySQL, SQLite</p>
<p class="card-text "></p>
<a href="https://github.com/FerdausPolok/Colony-Guest-Register" target="blank"
class="btn btn-primary">View on Github</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact form -->
<div class="form-container">
<div class="container">
<div class="row p-5">
<h4 class="fw-bolder text-center"> <em>You only fail when you stop trying..</em> </h4>
<p class=" text-center" id="ph" style="margin-bottom: 40px;">-Favorite quote</p>
<div class="col-sm text-center me-2 mt-2" style="border: 1px solid rgb(14, 10, 24);">
<span style="font-size: 72px;">120+</span>
<h5>Problem Solved</h5>
</div>
<div class="col-sm text-center me-2 mt-2" style="border: 1px solid rgb(14, 10, 24);">
<span style="font-size: 72px;">40+</span>
<h5>Upwork Job</h5>
</div>
<div class="col-sm text-center me-2 mt-2" style="border: 1px solid rgb(14, 10, 24);">
<span style="font-size: 72px;">70+</span>
<h5>Logo Created</h5>
</div>
<div class="col-sm text-center me-2 mt-2" style="border: 1px solid rgb(14, 10, 24);">
<span style="font-size: 72px;">1</span>
<h5>Real-life Job</h5>
</div>
</div>
</div>
</div>
<div class="contact-container p-4" id="contact">
<div class="container">
<div class="row p-4">
<div class="col">
<h2 class="fw-bolder text-center text-white">Get In Touch</h2>
</div>
</div>
<div class="row pb-2">
<div class="col">
<h4 class="text-white">Shoot a message!</h4>
</div>
</div>
<form action="backend.php">
<div class="row pb-4">
<div class="col">
<input type="text" class="form-control inner-form" placeholder="Your Name">
</div>
<div class="col">
<input type="text" class="form-control inner-form" placeholder="Your Email">
</div>
</div>
<div class="row pb-2">
<div class="col">
<textarea name="" id="" cols="30" rows="7" class="form-control inner-form" placeholder="Your Message"></textarea>
</div>
</div>
<div class="row pb-4">
<div class="col">
<button type="button" class="btn btn-danger btn-lg">Send Message</button>
</div>
</div>
</form>
</div>
</div>
<!-- footer section -->
<div class="footer-container py-4">
<div class="container">
<div class="row">
<p class="text-center" style="margin-top: 20px;">© All Rights Reserved by Ferdaus Zaman Polok 2022 </p>
</div>
</div>
</div>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
-->
</body>
</html>