-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
475 lines (405 loc) · 22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== FAVICON ===============-->
<link rel="shortcut icon" href="assets/img/Logoo.png" type="image/x-icon">
<!--=============== REMIXICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Doja's Portfolio</title>
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav-logo">
Ismail <span>Doja.</span>
</a>
<div class="nav-menu" id="nav-menu">
<ul class="nav-list">
<li><a href="#home" class="nav-links active-link">Home</a></li>
<li><a href="#about" class="nav-links">About</a></li>
<li><a href="#service" class="nav-links">Services</a></li>
<li><a href="#project" class="nav-links">Projects</a></li>
<li><a href="#contact" class="nav-links">Contact</a></li>
</ul>
<div class="nav-close" id="nav-close">
<i class="ri-close-line"></i>
</div>
</div>
<!------------toggle button---------->
<div class="nav-toggle" id="nav-toggle">
<i class="ri-menu-line"></i>
</div>
</nav>
</header>
<!--==================== MAIN ====================-->
<main class="main">
<!--==================== HOME ====================-->
<section class="home section" id="home">
<div class="home-container container grid">
<div class="home-content">
<div class="home-data">
<h3 class="home-subtitle">
Hello, <span>I'm</span>
</h3>
<h1 class="home-title">Ismail Oladoja</h1>
<h3 class="home-educa">Front-end Developer</h3>
<p class="home-desc">
I provide the greatest projects that result in
high-quality <br>work thanks to my understanding of
web development and design.
</p>
<div class="home-button">
<a href="#contact" class="button">Let's talk</a>
<a href="https://drive.google.com/file/d/1hHWqmCaNB8EOiubGsvWtzsne4hJkOnUM/view?usp=sharing" class="button" download>Download Resumé</a>
</div>
</div>
<div class="home-social">
<a href="https://github.com/Dojacom" targrt="_blank" class="home-soc-link">
<i class="ri-github-fill"></i>
</a>
<a href="https://twitter.com/dojacom_" targrt="_blank" class="home-soc-link">
<i class="fa-brands fa-x-twitter"></i>
</a>
<a href="https://www.linkedin.com/in/ismail-oladoja-9b8975236/" targrt="_blank" class="home-soc-link">
<i class="ri-linkedin-box-line"></i>
</a>
</div>
</div>
<div class="home-image">
<svg class="home-blob " viewBox="0 0 550 591" xmlns="http://www.w3.org/2000/svg">
<mask id="maskBlob" mask-type="alpha">
<path d="M263 47.1782C270.426 42.891 279.574 42.891 287 47.1782L501.157
170.822C508.583 175.109 513.157 183.032 513.157 191.606V438.894C513.157
447.468 508.583 455.391 501.157 459.678L287 583.322C279.574 587.609 270.426
587.609 263 583.322L48.843 459.678C41.4174 455.391 36.843 447.468 36.843
438.894V191.606C36.843 183.032 41.4174 175.109 48.843 170.822L263 47.1782Z"/>
</mask>
<g mask="url(#maskBlob)">
<path d="M263 47.1782C270.426 42.891 279.574 42.891 287 47.1782L501.157
170.822C508.583 175.109 513.157 183.032 513.157 191.606V438.894C513.157
447.468 508.583 455.391 501.157 459.678L287 583.322C279.574 587.609 270.426
587.609 263 583.322L48.843 459.678C41.4174 455.391 36.843 447.468 36.843
438.894V191.606C36.843 183.032 41.4174 175.109 48.843 170.822L263 47.1782Z"/>
<rect x="37" width="476" height="630" fill="url(#pattern0)"/>
</g>
<rect x="37" width="476" height="300" fill="url(#pattern1)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use href="#imageBlob" transform="matrix(0.00143057 0 0 0.00108108 0.0404062 0)"/>
</pattern>
<pattern id="pattern1" patternContentUnits="objectBoundingBox" width="1" height="1">
<use href="#imageBlob" transform="matrix(0.00143057 0 0 0.00226984 0.0404062 0)"/>
</pattern>
<!-- Insert your profile (recommended size: 640 x 940) -->
<image class="home-img" id="imageBlob" width="640" height="925" href="assets/img/doja.png"/>
</defs>
</svg>
</div>
</div>
</section>
<!--==================== ABOUT ====================-->
<section class="about section" id="about">
<div class="about-container container grid">
<div class="about-data">
<h3 class="section-subtitle">
My <span>Intro</span>
</h3>
<h2 class="section-title">
About Me
</h2>
<p class="about-desc">
Front-end programmer, I design UI/UX-based user interfaces for web pages and
have a lot of experience using Leetcode to solve issues.
I also contributed to an open source project.
</p>
<a href="#contact" class="button">Contact Me</a>
</div>
<div class="about-img">
<svg class="about-blob" viewBox="0 0 550 591" xmlns="http://www.w3.org/2000/svg">
<mask id="maskBlob" mask-type="alpha">
<path d="M263 47.1782C270.426 42.891 279.574 42.891 287 47.1782L501.157
170.822C508.583 175.109 513.157 183.032 513.157 191.606V438.894C513.157
447.468 508.583 455.391 501.157 459.678L287 583.322C279.574 587.609 270.426
587.609 263 583.322L48.843 459.678C41.4174 455.391 36.843 447.468 36.843
438.894V191.606C36.843 183.032 41.4174 175.109 48.843 170.822L263 47.1782Z"/>
</mask>
<g mask="url(#maskBlob)">
<path d="M263 47.1782C270.426 42.891 279.574 42.891 287 47.1782L501.157
170.822C508.583 175.109 513.157 183.032 513.157 191.606V438.894C513.157
447.468 508.583 455.391 501.157 459.678L287 583.322C279.574 587.609 270.426
587.609 263 583.322L48.843 459.678C41.4174 455.391 36.843 447.468 36.843
438.894V191.606C36.843 183.032 41.4174 175.109 48.843 170.822L263 47.1782Z"/>
<rect x="37" width="476" height="630" fill="url(#pattern0)"/>
</g>
<rect x="37" width="476" height="300" fill="url(#pattern1)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use href="#imageBlob" transform="matrix(0.00143057 0 0 0.00108108 0.0404062 0)"/>
</pattern>
<pattern id="pattern1" patternContentUnits="objectBoundingBox" width="1" height="1">
<use href="#imageBlob" transform="matrix(0.00143057 0 0 0.00226984 0.0404062 0)"/>
</pattern>
<image class="about-img" id="imageBlob" width="640" height="925" href="assets/img/doja.png"/>
</defs>
</svg>
</div>
</div>
</section>
<!--==================== SKILLS ====================-->
<section class="skills section">
<div class="skills-container container grid">
<div class="skills-data">
<div class="section-subtitle">
<h3>Favourite <span>Skills</span></h3>
<h2 class="section-title">My Skills</h2>
<p class="skills-desc">
See fully what skills I have and perform,
to develop the projects for you.
</p>
<a href="#project" class="button">See Project</a>
</div>
</div>
<div class="skills-content">
<ol class="skills-group">
<li class="skills-item">HTML5 & CSS3</li>
<li class="skills-item">Javascript</li>
<li class="skills-item">Bootstrap</li>
<li class="skills-item">React</li>
</ol>
<ol class="skills-group" start="5">
<li class="skills-item">Git & GitHub</li>
<li class="skills-item">Figma</li>
<li class="skills-item">Tailwind CSS</li>
</ol>
</div>
</div>
</section>
<!--==================== SERVICES ====================-->
<section class="services section" id="service">
<h3 class="section-subtitle">
My <span>Services</span>
</h3>
<h2 class="section-title">
What I Do
</h2>
<div class="service-container container grid">
<article class="service-card">
<h2 class="service-title">
<i class="ri-layout-3-line service-icon"></i>
Web Developer
</h2>
<p class="service-desc">
Creation of unique web pages.
Using industry-specific libraries
and modern technology
</p>
</article>
<article class="service-card">
<h2 class="service-title">
<i class="ri-pen-nib-fill service-icon"></i>
UI/UX Designer
</h2>
<p class="service-desc">
I provide design services for online
interfaces and mobile applications
using the programs Figma, Adobe XD, and Sketch.
</p>
</article>
<article class="service-card">
<h2 class="service-title">
<i class="ri-edit-2-line service-icon"></i>
Technical Writer
</h2>
<p class="service-desc">
Technical writer with a flair
for creativity and information who
can communicate difficult ideas in
an understandable manner.
</p>
</article>
</div>
</section>
<!--==================== PROJECTS ====================-->
<section class="projects section" id="project">
<h2 class="section-title">
My <span>Projects</span>
</h2>
<div class="project-container container grid">
<article class="project-card">
<img src="assets/img/calculators.png" class="project-img">
<div class="project-modal">
<h2 class="project-title">Versatile Calculator</h2>
<span class="project-subtitle">
<i class="ri-reactjs-line project-icon"></i>
<i class="ri-reactjs-line project-icon"></i>
<i class="ri-reactjs-line project-icon"></i>
</span>
<div class="project-btn">
<a href="https://calculators-app.vercel.app/" class="project-button">
Live preview<i class="ri-external-link-line"></i></a>
<a href="https://github.com/Dojacom/calculators-app.git" class="project-button">
Source code<i class="ri-external-link-line"></i></a>
</div>
</div>
</article>
<article class="project-card">
<img src="assets/img/project-2.png" class="project-img">
<div class="project-modal">
<h2 class="project-title">Disney+ Clone</h2>
<span class="project-subtitle">
<i class="ri-html5-fill project-icon"></i>
<i class="ri-css3-fill project-icon"></i>
<i class="ri-javascript-fill project-icon"></i>
</span>
<div class="project-btn">
<a href="https://dojacom.github.io/disney-clone/" class="project-button">
Live preview<i class="ri-external-link-line"></i></a>
<a href="https://github.com/Dojacom/disney-clone.git" class="project-button">
Source code<i class="ri-external-link-line"></i></a>
</div>
</div>
</article>
<article class="project-card">
<img src="assets/img/project-3.png" class="project-img">
<div class="project-modal">
<h2 class="project-title">Admin Dashboard</h2>
<span class="project-subtitle">
<i class="ri-html5-fill project-icon"></i>
<i class="ri-css3-fill project-icon"></i>
<i class="ri-javascript-fill project-icon"></i>
</span>
<div class="project-btn">
<a href="https://dojacom.github.io/Admin-dashboard/" class="project-button">
Live preview<i class="ri-external-link-line"></i></a>
<a href="https://github.com/Dojacom/Admin-dashboard.git" class="project-button">
Source code<i class="ri-external-link-line"></i></a>
</div>
</div>
</article>
<article class="project-card">
<img src="assets/img/project-4.png" class="project-img">
<div class="project-modal">
<h2 class="project-title">Note App</h2>
<span class="project-subtitle">
<i class="ri-html5-fill project-icon"></i>
<i class="ri-css3-fill project-icon"></i>
<i class="ri-javascript-fill project-icon"></i>
</span>
<div class="project-btn">
<a href="https://dojacom.github.io/NoteApp/" class="project-button">
Live preview<i class="ri-external-link-line"></i></a>
<a href="https://github.com/Dojacom/NoteApp.git" class="project-button">
Source code<i class="ri-external-link-line"></i></a>
</div>
</div>
</article>
<article class="project-card">
<img src="assets/img/project-7.png" class="project-img">
<div class="project-modal">
<h2 class="project-title">Random photo gallery</h2>
<span class="project-subtitle">
<i class="ri-html5-fill project-icon"></i>
<i class="ri-css3-fill project-icon"></i>
<i class="ri-javascript-fill project-icon"></i>
</span>
<div class="project-btn">
<a href="https://dojacom.github.io/generate-random-pictures/" class="project-button">
Live preview<i class="ri-external-link-line"></i></a>
<a href="https://github.com/Dojacom/generate-random-pictures.git" class="project-button">
Source code<i class="ri-external-link-line"></i></a>
</div>
</div>
</article>
<article class="project-card">
<img src="assets/img/birthday-img.png" class="project-img">
<div class="project-modal">
<h2 class="project-title">Birthday Reminder</h2>
<span class="project-subtitle">
<i class="ri-reactjs-line project-icon"></i>
<i class="ri-reactjs-line project-icon"></i>
<i class="ri-reactjs-line project-icon"></i>
</span>
<div class="project-btn">
<a href="" class="project-button">
Live preview<i class="ri-external-link-line"></i></a>
<a href="https://github.com/Dojacom/birthday-reminder.git" class="project-button">
Source code<i class="ri-external-link-line"></i></a>
</div>
</div>
</article>
</div>
<div class="all-projects-ref">
<a href="projects.html" class="button">
See all projects <i class="ri-arrow-right-line"></i>
</a>
</div>
</section>
<!--==================== CONTACT ====================-->
<section class="contact section" id="contact">
<h3 class="section-subtitle">
Get in <span>Touch</span>
</h3>
<h2 class="section-title">
Contact Me
</h2>
<div class="contact-container container grid">
<form action="" class="contact-form" id="contact-form">
<div class="contact-group">
<input type="text" name="user-name" required placeholder="Enter your name">
<input type="email" name="user-email" required placeholder="Enter your email">
</div>
<textarea name="user-project" required id="contact-message"></textarea>
<p class="contact-msg" id="contact-msg"></p>
<button type="submit" class="button contact-button">
Send Message
</button>
</form>
</div>
</section>
</main>
<!--==================== FOOTER ====================-->
<footer class="footer">
<div class="footer-container container grid">
<div>
<h1 class="footer-title">
Certified <span>By</span>
</h1>
<a href="https://drive.google.com/file/d/17UjQAA9y_mRfa_oaSl-MoUbfNSmF2zol/view?usp=sharing" download><img src="assets/img/meta.png" class="meta-img" alt="meta"></a>
</div>
<div class="footer-social">
<a href="https://www.linkedin.com/in/ismail-oladoja-9b8975236/" target="_blank" class="footer-social-link">
<i class="ri-linkedin-box-line"></i>
</a>
<a href="https://github.com/Dojacom" target="_blank" class="footer-social-link">
<i class="ri-github-fill"></i>
</a>
<a href="www.twitter.com/dojacom_" target="_blank" class="footer-social-link">
<i class="fa-brands fa-x-twitter"></i>
</a>
</div>
<div class="foot">
<span class="footer-copy">
© Copyright <span class="footer-span">Oladoja 2023. </span> All rights reserved.
</span>
</div>
</div>
</footer>
<!--========== SCROLL UP ==========-->
<a href="#" class="scrollup" id="scrollup">
<i class="ri-arrow-up-line"></i>
</a>
<!--=============== SCROLLREVEAL ===============-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== EMAIL JS ===============-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
<script src="assets/js/loop.js"></script>
</body>
</html>