-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
367 lines (326 loc) · 12.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
<!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" />
<title>Faridul's profile</title>
<!-- font awesome cdnjs for icon button -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<!-- google font -->
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans&family=Montserrat&family=Satisfy&display=swap"
rel="stylesheet"
/>
<!-- css for mobile -->
<link rel="stylesheet" href="style.css" type="text/css" />
<!-- css for desktop -->
<link
rel="stylesheet"
media="screen and (min-width:992px)"
href="desktop.css"
type="text/css"
/>
</head>
<body>
<!-- nav-menu starts -->
<nav class="navbar" id="home">
<section class="nav-logo col-2">
<img src="./Image/hand-book-logo.jpg" alt="hand-book-logo" />
</section>
<section class="nav-heading col-4">
<h1>Faridul Islam</h1>
</section>
<section class="navbar-menu col-6">
<a href="#home"> HOME </a>
<a href="#about-me-id"> ABOUT ME </a>
<!-- <a href="#"> PORTFOLIO PROJECT </a> -->
<a href="#skill"> SKILLS </a>
<a href="#contact"> CONTACT </a>
</section>
</nav>
<!-- nav-menu ends -->
<!-- profile start -->
<main>
<section class="profile-section">
<img
class="top-weather-icon"
src="Image/weather.png"
alt="weather's photo"
/>
<section class="profile-heading">
<h1>I am a web Designer and Developer <br /></h1>
<p>
Hi! My name is Faridul Islam. Welcome to my page that I've designed
to showcase my skills and expertise that I've accumulated over the
year.
</p>
</section>
<img
class="bottom-weather-icon"
src="Image/weather.png"
alt="weather's photo"
/>
</section>
<!-- profile end -->
<!-- about me section starts -->
<section class="about-me-sec" id="about-me-id">
<h2>ABOUT ME</h2>
<hr class="dotted-hr" />
<div class="about-me-image col-6">
<img src="./Image/IMG_20190131_121149.jpg" alt="Faridul's photo" />
</div>
<div class="about-me-desc col-6">
<p>I like to call myself "a Web developer".</p>
<p>
I'm a very passionate person, especially when it comes time to learn
new technologies from young age. <mark>I'm also passionate about making
error-free websites with 100% client satisfaction.</mark> I have been
attracted by technology and how tools work, things growing etc. I
have already learned HTML, CSS, JavaScript, TypeScript, React Js,
Node Js, Express Js, Bootstrap, Tailwind, MongoDB/SQL for two years
and more and continue learnig to improve my coding knowledge. I am
spending so much time to improve my web development skills. Every
day I want to learn something new, actaully I love to write code.
</p>
<hr class="aboutme-hr" />
<p>Name: Md. Faridul Islam</p>
<hr class="aboutme-hr" />
<p>Address: Rangpur, Bangladesh</p>
<hr class="aboutme-hr" />
<p>
Email:
<a href="mailto:faridulccr@gmail.com">faridulccr@gmail.com</a>
</p>
<hr class="aboutme-hr" />
<p>Phone: <a href="tel:+8801779299777">+8801779299777</a></p>
<hr class="aboutme-hr" />
<p>
website:
<a href="http://www.google.com" target="_blank">
www.freelancerfaridul.com</a
>
</p>
<hr class="aboutme-hr" />
<p>
<a href="https://www.dropbox.com/" download="" target="_blank">
<button class="cv-btn">Download CV</button>
</a>
</p>
</div>
</section>
<!-- about me section ends -->
<!-- professional wxperience starts here -->
<section class="professional-experience">
<section class="work-experience col-4">
<div class="card">
<div class="card-icon">
<img class="rounded-img" src="Image/work.png" alt="" />
</div>
<div class="card-title">
<h2>WORK EXPERIENCE</h2>
</div>
<h3>This section is for demo</h3>
<div class="card-desc">
<ol>
<li>
<strong> Lecturer of Accounting & Information System </strong>
<br />
<!-- 01/05/2016 - 01/08/2017 <br> -->
Maidandighi Degree Collage <br />
Maidandighi,Panchagarh,5400 Rangpur (Bangladesh)
</li>
<hr />
<li>
<strong> Lecturer of BBA Department </strong> <br />
<!-- 10-11-217 - 06-04-2018 <br> -->
Panchagarh M.R Collage <br />
Panchagarh, 5400 Rangpur (Bangladesh) <br />
</li>
<hr />
<li>
<strong> Start freelancing on Fiverr </strong> <br />
28-02-20 - Running
</li>
<hr />
<li>
<strong> Youtuber, Lecturer of Accounting </strong> <br />
14-06-2021- Runing <br />
..... Online Students <br />
... Videos on 17 different BBA subjects <br />
<a href="http://www.youtube.com"> Visit my youtube channel</a>
</li>
</ol>
</div>
</div>
</section>
<section class="education col-4">
<div class="card">
<div class="card-icon">
<img class="rounded-img" src="Image/book.png" alt="" />
</div>
<div class="card-title">
<h2>EDUCATION AND TRAINING</h2>
</div>
<div class="card-desc">
<ol>
<li>
<strong> M.B.A in Accounting & Information System </strong>
<br />
01/01/2020 - 01/03/2022 <br />
Carmichael Collage,Rangpur <br />
Rangpur,5400 Rangpur (Bangladesh) <br />
<a href="http://www.ccr.edu.bd"> http://www.ccr.edu.bd</a>
</li>
<hr />
<li>
<strong> B.B.A in Accounting & Information System </strong>
<br />
01-02-215 - 20-08-2019 <br />
Carmichael Collage, Rangpur <br />
Rangpur, 5400 Rangpur (Bangladesh) <br />
<a href="http://www.ccr.edu.bd"> http://www.ccr.edu.bd</a>
</li>
<hr />
<li>
<strong> C, HTML, CSS, JavaScript, React Js, Node Js, Express Js, .... </strong>
<br />
On yourube <br />
02-03-2020 - Running
</li>
</ol>
</div>
</div>
</section>
<section class="skill col-4" id="skill">
<div class="card">
<div class="card-icon">
<img class="rounded-img" src="Image/skill.png" alt="" />
</div>
<div class="card-title">
<h2>SKILLS</h2>
</div>
<div class="card-desc">
<div class="skill-container">
<ul>
<li class="html">HTML</li>
<li class="css">CSS</li>
<li class="bootstrap">BOOTSTRAP</li>
<li class="javascript">JAVASCRIPT</li>
<li class="nodejs">NODEJS</li>
<li class="reactjs">REACTJS</li>
<li class="expressjs">EXPRESSJS</li>
<li class="github">GITHUB</li>
</ul>
</div>
</div>
</div>
</section>
</section>
<!-- professional experience ends here -->
<!-- Achievement Contact section starts from here -->
<section class="container">
<section class="achievement-sec col-4">
<h2>ACHIEVEMENTS</h2>
<hr class="dotted-hr" />
<p>
1. 100% Tuition Waiver: Based on excellent academic result in
Carmichael Collage, Rangpur, Bangladesh.
</p>
<p>
2. Silver Button from YouTube because of 100,000 Subscribers.
Current Subscribers are more than 208,000.
</p>
<p>3. IELTS 7 (Speaking-8.5, Listening-8, Writing-6, Reading-6)</p>
</section>
<section class="contact-me-sec col-4" id="contact">
<h2>CONTACT ME</h2>
<hr class="dotted-hr" />
<form
action="mailto:faridulccr@gmail.com"
method="post"
enctype="text/plain"
>
<p><input type="text" name="name" placeholder="Your Name" /></p>
<p><input type="email" name="email" placeholder="Your Email" /></p>
<textarea
name="comments"
id=""
cols="30"
rows="10"
placeholder="Your Comments Here"
></textarea>
<button type="submit">SEND</button>
<button type="reset">RESET</button>
</form>
</section>
<section class="more-contact-sec col-4">
<h2>More Ways to Contact</h2>
<hr class="dotted-hr" />
<div class="icon-button">
<button
onclick="window.open('https://www.youtube.com')"
class="youtube request-callback"
aria-hidden="true"
>
<i class="fab fa-youtube" style="color: #c4302b"></i>
</button>
<button
onclick="window.open('https://www.facebook.com')"
class="facebook request-callback"
>
<i class="fab fa-facebook-f fa-1x" style="color: #3b5998"></i>
</button>
<button
onclick="window.open('https://www.google.com')"
class="google request-callback"
>
<i class="fab fa-google" style="color: rgb(27, 29, 109)"></i>
</button>
<button
onclick="window.open('https://www.skype.com')"
class="skype request-callback"
>
<i class="fab fa-skype" style="color: #3b5998"></i>
</button>
<!-- <button onclick="window.open('https://www.chrome.com')" class="chrome request-callback"> <i class="fab fa-chrome" style="color:#3b5998"></i> </button> -->
<!-- <button onclick="window.open('https://www.envelope.com')" class="envelope request-callback"> <i class="fas fa-envelope" style="color:cadetblue"></i> </button> -->
<button
onclick="window.open('https://www.linkedin.com')"
class="linkedin request-callback"
>
<i class="fab fa-linkedin" style="color: #3b5998"></i>
</button>
<button
onclick="window.open('https://github.com/faridulccr')"
class="github request-callback"
>
<i class="fab fa-github" style="color: #000000"></i>
</button>
</div>
</section>
</section>
<!-- Contact me section ends here -->
</main>
<footer>
<section class="footer-menu col-6">
<a href="#home"> Home </a>
<a href="#about-me-id"> About Me </a>
<!-- <a href="#"> PORTFOLIO PROJECT </a> -->
<a href="#skill"> Skills </a>
<a href="#contact"> Contact Me </a>
</section>
<section class="copyright col-6">
<p>
© Faridul 2020. developed with
<span style="color: red; font-size: 1.3rem"> ❤ </span> by Faridul
</p>
</section>
</footer>
</body>
</html>