-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
711 lines (616 loc) · 36.1 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
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Personal Portfolio" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Portfolio</title>
</head>
<body>
<div class="settings-box">
<div class="toggle-display"><i class="fas fa-cog fa-lg"></i></div>
<div class="color-options">
<h4>Colors options</h4>
<ul class="colors-container">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div class="personal-color">
<h4>Pick your favorite color</h4>
<i class="fas fa-paint-brush"></i>
<input type="color" name="personal-color" id="personal-color" />
</div>
<div class="theme-modes">
<h4>Themes</h4>
<div class="theme-controls">
<span class="light-theme active">Light</span>
<span class="dark-theme">Dark</span>
</div>
</div>
</div>
<div class="modal-overlay">
<div class="modal-content">
<div class="close-btn"><i class="fas fa-times"></i></div>
<div class="image-container">
<img src="" alt="modal" class="modal-img" />
</div>
<div class="modal-details">
<div class="modal-details-header">
<span class="modal-title" id="modal-details-header-title"></span>
<span class="icon"><i class="fas fa-angle-up"></i></span>
<span class="modal-info"></span>
</div>
<div class="modal-details-body">
<div class="modal-details-body-box">
<h3 class="modal-details-body-title" id="modal-details-body-title"></h3>
<p class="modal-details-body-desc" id="modal-details-body-desc"></p>
<p class="modal-details-body-desc" id="modal-details-body-tools"></p>
<p class="modal-details-body-keys" id="modal-details-body-tags"></p>
<div class="modal-details-body-action">
<!-- <a class="btn btn-border" href="" target="_blank" id="code-link">
<i class="fas fa-code"></i>
Code
</a> -->
<a class="btn btn-border" href="#" target="_blank" id="website-link">
<i class="fas fa-link"></i>
Website
</a>
</div>
</div>
</div>
</div>
</div>
<div class="modal-controls">
<button class="prev"><i class="fas fa-chevron-left fa-2x"></i></button>
<button class="next"><i class="fas fa-chevron-right fa-2x"></i></button>
</div>
</div>
<div class="loader">
<div class="sk-cube-grid">
<div class="sk-cube sk-cube1"></div>
<div class="sk-cube sk-cube2"></div>
<div class="sk-cube sk-cube3"></div>
<div class="sk-cube sk-cube4"></div>
<div class="sk-cube sk-cube5"></div>
<div class="sk-cube sk-cube6"></div>
<div class="sk-cube sk-cube7"></div>
<div class="sk-cube sk-cube8"></div>
<div class="sk-cube sk-cube9"></div>
</div>
</div>
<div class="main-container">
<aside class="aside">
<div class="nav-toggler"><span></span></div>
<div class="logo"><a href="#">DMC</a></div>
<nav class="nav">
<ul class="links-container">
<li class="active" data-section=".home">
<a href="#"><i class="fas fa-home"></i> <span>Home</span></a>
</li>
<li data-section=".about">
<a href="#"><i class="fas fa-user"></i> <span>About</span></a>
</li>
<li data-section=".services">
<a href="#"><i class="fas fa-list"></i> <span>Services</span></a>
</li>
<li data-section=".portfolio">
<a href="#"><i class="fas fa-briefcase"></i> <span>Portfolio</span></a>
</li>
<li data-section=".contact">
<a href="#"><i class="fas fa-comments"></i> <span>Contact</span></a>
</li>
</ul>
</nav>
<footer class="copyright">
<p>Copyright © Hoziefa Alhassan 2020</p>
</footer>
</aside>
<div class="main-content">
<section class="home section pre-active">
<div class="container">
<div class="wrapper">
<div class="intro">
<img src="./images//personal.JPG" alt="profile" loading="lazy" />
<h1>Hoziefa Alhassan</h1>
<p>I'm a web developer</p>
</div>
<div class="social-icons">
<a href="https://github.com/Hoziefa" target="_blank" rel="noreferrer">
<i class="fab fa-github fa-lg"></i>
</a>
<a href="https://www.linkedin.com/in/hoziefa-alhassan/" target="_blank" rel="noreferrer">
<i class="fab fa-linkedin-in fa-lg"></i>
</a>
</div>
</div>
</div>
</section>
<section class="about section">
<header>
<h2>About Me</h2>
<h3>I'm Hoziefa Alhassan and I'm a <span>Software Engineer & Web Developer</span></h3>
<p>
Hi! I am a Software Engineer & web developer, and <br />
I'm very passionate and dedicated to my work. With a good experience as a professional web
developer. I have acquired the skills and knowledge necessary to make your projects a
success. I enjoy every step of the design and developing process, from discussion and
collaboration. There’s nothing I enjoy more than coding, searching, solving errors. I'm
positive person, naturally curious, and hardly working to improve my soft and technical
skills. I’ve spent a lot of time trying to perfect what I do and while I’ll never be perfect,
I do my best to come close. In addition to my coding life.
</p>
</header>
<div class="content">
<div class="info">
<div class="col-one">
<p><span>Birthday:</span> 10 january 1997</p>
<p><span>Website:</span> https://github.com/Hoziefa</p>
<p><span>Degree:</span> M.TECH</p>
<p><span>city:</span> Amman</p>
</div>
<div class="col-two">
<p><span>age:</span> 24</p>
<p><span>email:</span> hoziefaalhasan@gmail.com</p>
<p><span>phone:</span> 00962795516507</p>
<p><span>freelance:</span> available</p>
</div>
<div class="actions">
<a href="./images/resume.pdf" target="_blank" download="Resume">
<button>Download CV</button>
</a>
<button>Hire Me</button>
</div>
</div>
<div class="skills">
<div>React</div>
<div>Redux</div>
<div>Vue</div>
<div>Typescript</div>
<div>ES6</div>
<div>Node</div>
<div>Express</div>
<div>JavaScript</div>
<div>Object-Oriented Programming (OOP)</div>
<div>Software Design Patterns</div>
<div>Service-Oriented Architecture (SOA)</div>
<div>SOLID Design Principles</div>
<div>Problem Solving</div>
<div>AJAX</div>
<div>Jquery</div>
<div>Git</div>
<div>MongoDB</div>
<div>Webpack</div>
<div>pre processor</div>
<div>Bootstrap</div>
<div>Material UI</div>
<div>Html5</div>
<div>Css3</div>
</div>
<div class="education-experience">
<div class="education">
<h3>Education</h3>
<div class="timeline">
<div class="timeline-box">
<span class="date"> <i class="far fa-calendar-alt"></i> 2011 - 2012 </span>
<div class="title">IT Networking</div>
<div class="text">high school diploma.</div>
</div>
<div class="timeline-box">
<span class="date"> <i class="far fa-calendar-alt"></i> 2014 - 2020 </span>
<div class="title">Software & Hardware Android IOS OS</div>
<div class="text">Software & Hardware Maintenance.</div>
</div>
<div class="timeline-box">
<span class="date"> <i class="far fa-calendar-alt"></i> 2020 - 2021 </span>
<div class="title">web development</div>
<div class="text">Frontend development, (MERN & MEVN) stack development.</div>
</div>
</div>
</div>
<div class="experience">
<h3>Experience</h3>
<div class="timeline">
<div class="timeline-box">
<span class="date"> <i class="far fa-calendar-alt"></i> 2018 - 2021 </span>
<div class="title">Frontend Developer</div>
<div class="text">
build a Web presence from the ground up, from concept, navigation, layout,
and programming to UX
</div>
</div>
<div class="timeline-box">
<span class="date"> <i class="far fa-calendar-alt"></i> 2020 - 2021 </span>
<div class="title">Working on Android\IOS Developer</div>
<div class="text">Developing cross platform apps</div>
</div>
<div class="timeline-box">
<span class="date"> <i class="far fa-calendar-alt"></i> 2019 - 2021 </span>
<div class="title">Working on Backend Developer</div>
<div class="text">Node-Express NOSQL JWT</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="services section">
<header><h2>services</h2></header>
<div class="content">
<div>
<i class="far fa-thumbs-up fa-3x"></i>
<h5>Social Media Integration</h5>
<p>
Social media integration enables your website to post updates to Facebook, displays a
Twitter feed, and links to your social media accounts.
</p>
</div>
<div>
<i class="fas fa-mobile-alt fa-3x"></i>
<h5>Responsive Design</h5>
<p>
I Can Deal With Media Queries and Css Frameworks Like Bootstrap to Make the Site Work on
all Different Devices Like Mobiles, Tablets.
</p>
</div>
<div>
<i class="fas fa-code fa-3x"></i>
<h5>Web Development</h5>
<p>
I'm able to build a Web presence from the ground up, from concept, navigation, layout,
and programming to UX.
</p>
</div>
<div>
<i class="fab fa-react fa-3x"></i>
<h5>Single Page Application</h5>
<p>
I Understand principles of Single Page Application to Deal with J.S Frameworks Like
React.js to Make the Site Fast and Logical in its Functions.
</p>
</div>
<div>
<i class="fas fa-rocket fa-3x"></i>
<h5>SEO Optimization</h5>
<p>
SEO is the practice of improving and promoting a website in order to increase the number
of visitors it receives.
</p>
</div>
<div>
<i class="far fa-edit fa-3x"></i>
<h5>Content Writing</h5>
<p>
Professional website content writing by our in-house copywriter, Nicholas Grundy. We also
offer copy-writing for optimizing your website's SEO.
</p>
</div>
</div>
</section>
<section class="portfolio section">
<header><h2>Portfolio</h2></header>
<div class="content">
<ul>
<li class="active" data-category="all">All</li>
<li data-category="web-apps">Web Applications</li>
<li data-category="recipes">Food Recipes</li>
<li data-category="web-games">Web Games</li>
<li data-category="e-commerce">E-commerce</li>
<li data-category="latest-projects">latest projects</li>
</ul>
<div class="categories">
<div class="category full-size web-apps latest-projects">
<img
src="./images/portfolio/devChat.png"
alt="devChat"
loading="lazy"
data-linkto="https://slack-chat-ae27a.web.app"
data-description="A Slack chat app built with React, Redux, and Firebase"
data-tools="<br/> <strong>client:</strong> React, React-Hooks, React-routes, Redux, semantic-ui, pre-processor. <br/> <strong>server:</strong> RealTime Database Firebase, Firebase Storage, Firebase Authentication, Firebase Hosting."
data-tags="react react-hooks react-routes redux semantic-ui firebase chat-application factory-pattern pre-processor"
/>
<h5>devChat</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size e-commerce latest-projects">
<img
src="./images/portfolio/waves.png"
alt="waves"
loading="lazy"
data-linkto="https://waves-wave.herokuapp.com/"
data-description="The best and most featured e-commerce app. With Incredible Dashboard."
data-tools="<br/> <strong>client:</strong> React, React-Hooks, React-routes, React-Redux, Redux, Redux-form, axios, material-ui, pre-processor. <br/> <strong>server:</strong> Node, Express, jwt, MongoDB, mongoose."
data-tags="react redux react-routes react-hooks node express mongoDB mongoose crud material-ui pre-processor"
/>
<h5>waves</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps latest-projects">
<img
src="./images/portfolio/m_city.png"
alt="manchester city"
loading="lazy"
data-linkTo="https://m-city-dde92.web.app/"
data-description="The best Manchester City app. With a great and nice-looking UI. Easy-to-use, and nicely designed dashboard."
data-tools="<br/> <strong>client:</strong> React, React-Hooks, React-Context-Api, React-routes, material-ui, pre-processor. <br/> <strong>server:</strong> RealTime Database Firebase, Firebase Storage, Firebase Authentication, Firebase Hosting."
data-tags="react react-context-api react-hooks react-routes material-ui pre-processor firebase"
/>
<h5>manchester city</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps latest-projects">
<img
src="./images/portfolio/to-do.png"
alt="to-do app"
loading="lazy"
data-linkto="https://to-dos-58c39.web.app"
data-description="A to-do app built with React, Firebase, Typescript"
data-tools="<br/> <strong>client:</strong> React, React-Hooks, React-Context-API, pre-processor, Typescript. <br/> <strong>server:</strong> RealTime Database Firebase, Firebase Storage, Firebase Authentication, Firebase for Hosting."
data-tags="react firebase typescript services crud oop inheritance factory-pattern composition-pattern publisher-subscriber-pattern context-api-react hooks-api-react filter-tasks"
/>
<h5>to-do app</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps latest-projects">
<img
src="./images/portfolio/special-template.png"
alt="special template"
loading="lazy"
data-linkto="https://special-template.netlify.app"
data-description="A Template built with typescript, pre-processor, design patterns"
data-tools="typescript, pre-processor, webpack."
data-tags="typescript oop best-practices dependency-injection oop design-patterns inheritance mvc-architecture persistent-storage pre-processor singleton-pattern responsive-web-design composition-pattern publisher-subscriber-pattern dry-principle"
/>
<h5>special template</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps latest-projects">
<img
src="./images/portfolio/hotel-reservation.png"
alt="hotel-reservation"
loading="lazy"
data-linkTo="https://dmchotelreservation.netlify.app/"
data-description="rooms hotel reservation app."
data-tools=""
data-tags="react react-hooks react-context-api pre-processor"
/>
<h5>hotel reservation</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size e-commerce latest-projects">
<img
src="./images/portfolio/phone-store.png"
alt="phone-store"
loading="lazy"
data-linkTo="https://hphonestore.netlify.app/"
data-description="Shop and get your favorite phone online."
data-tools=""
data-tags="react react-hooks react-context-api pre-processor"
/>
<h5>Phone Store</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size recipes latest-projects">
<img
src="./images/portfolio/forkify.png"
alt="forkify"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Forkify/"
data-description="Get your favorite food online"
data-tools=""
data-tags="html5 pre-processor webpack babel vanilla-js"
/>
<h5>Forkify</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps latest-projects">
<img
src="./images/portfolio/budget.png"
alt="budget"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Budget/"
data-description="Stay attentive to your budget"
data-tools=""
data-tags="html5 pre-processor vanilla-js"
/>
<h5>Budget</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size recipes">
<img
src="./images/portfolio/meal-finder.png"
alt="meal-finder"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Meal-Finder/"
data-description="Search for your favorite Meal"
data-tools=""
data-tags="html5 pre-processor vanilla-js fetch-api"
/>
<h5>Meal Finder</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size e-commerce">
<img
src="./images/portfolio/shopping-cart.png"
alt="shopping-cart"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Shopping-cart/"
data-description="furniture shopping app"
data-tools=""
data-tags="html5 pre-processor vanilla-js fetch-api"
/>
<h5>Shopping Cart</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-games">
<img
src="./images/portfolio/typing-speed.png"
alt="typing-speed"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Typing-Game/"
data-description="Test your typing speed in a funny game"
data-tools=""
data-tags="html5 pre-processor vanilla-js"
/>
<h5>Typing Game</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-games">
<img
src="./images/portfolio/hangman.png"
alt="hangman"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Hangman-game/"
data-description="Have fun with a nice hangman game"
data-tools=""
data-tags="html5 pre-processor vanilla-js fetch-api clean-code best-practices"
/>
<h5>Hangman Game</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps">
<img
src="./images/portfolio/stick-notes.png"
alt="stick-notes"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Stick-it-Notes/"
data-description=""
data-tools=""
data-tags="html5 pre-processor vanilla-js"
/>
<h5>Stick-it Notes</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-games">
<img
src="./images/portfolio/breakout.png"
alt="breakout"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Breakout-Game/"
data-description="Have fun with a nice Breakout Game."
data-tools=""
data-tags="html5 pre-processor vanilla-js canvas"
/>
<h5>Breakout Game</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps">
<img
src="./images/portfolio/q-a-memory-cards.png"
alt="Q-A-Memory-Cards"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Q-A-Memory-Cards/"
data-description=""
data-tools=""
data-tags="html5 pre-processor vanilla-js"
/>
<h5>Q-A Memory Cards</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps">
<img
src="./images/portfolio/speech-text-reader.png"
alt="Speech-Text-Reader"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Speech-Text-Reader/"
data-description=""
data-tools=""
data-tags="html pre-processor vanilla-js"
/>
<h5>Speech Text Reader</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps">
<img
src="./images/portfolio/relaxer-app.png"
alt="Relaxer-App"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Relaxer-App/"
data-description="Relax with a Relaxer App."
data-tools=""
data-tags="html5 pre-processor vanilla-js"
/>
<h5>Relaxer App</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps">
<img
src="./images/portfolio/new-year-countdown.png"
alt="New-Year-Countdown"
loading="lazy"
data-linkTo="https://hoziefa.github.io/New-Year-Countdown/"
data-description="Always be prepared for the new year."
data-tools=""
data-tags="html pre-processor vanilla-js"
/>
<h5>New Year Countdown</h5>
<i class="fas fa-search fa-lg"></i>
</div>
<div class="category full-size web-apps">
<img
src="./images/portfolio/music-player.png"
alt="Music-Player"
loading="lazy"
data-linkTo="https://hoziefa.github.io/Music-Player/"
data-description="Nicely designed Music Player"
data-tools=""
data-tags="html5 pre-processor vanilla-js"
/>
<h5>Music Player</h5>
<i class="fas fa-search fa-lg"></i>
</div>
</div>
</div>
</section>
<section class="contact section">
<header>
<h2>Contact Me</h2>
</header>
<div class="content">
<div class="contact-info">
<div>
<i class="fas fa-phone fa-2x"></i>
<span>Call Me On</span>
<span>+795516507</span>
</div>
<div>
<i class="fas fa-envelope fa-2x"></i>
<span>Mail Me On</span>
<span>hoziefaalhasan@gmail.com</span>
</div>
</div>
<div class="form">
<form>
<div class="wrapper">
<div class="field">
<input type="text" name="name" required autocomplete="off" />
<label>name</label>
</div>
<div class="field">
<input type="text" name="email" required autocomplete="off" />
<label>email</label>
</div>
</div>
<div class="field">
<input type="text" name="subject" required autocomplete="off" />
<label>subject</label>
</div>
<div class="field">
<textarea name="message" required></textarea>
<label>message</label>
</div>
<button type="submit">Send Message</button>
</form>
</div>
</div>
</section>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>