-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1940 lines (1922 loc) · 81.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
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
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon-->
<link rel="icon" href="./favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
>
<!--FontAwesome-->
<link rel="stylesheet" href="src/css/all.min.css">
<!--Custom CSS-->
<link rel="stylesheet" href="src/css/style.css">
<title>My Portfolio</title>
</head>
<body data-spy="scroll" data-target=".navbar">
<!--Navbar START-->
<header>
<div id="Header">
<nav class="navbar navbar-expand-sm navbar-dark bg-dark">
<div class="container">
<button
class="navbar-toggler"
data-toggle="collapse"
data-target="#Navbar"
>
<span class="navbar-toggler-icon"></span>
</button>
<a href="./index.html" class="navbar-brand">
<h5 class="text-white my-0">Dmytro Onysko</h5>
</a>
<div class="btn-group py-0">
<button type="button"
class="btn btn-primary dropdown-toggle text-white pt-2 py-1 px-2 my-0 font-weight-bold"
data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false"
>
CV
</button>
<div class="dropdown-menu text-center">
<a class="dropdown-item typePdf" href="./src/files/Frontend_2020-10-15_Dmytro-Onysko.pdf" title="">PDF</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item typeOnline" href="https://resume.io/r/t4ewsdY6q"
target="_blank"
title=""
>
Online
</a>
</div>
</div>
<div class="collapse navbar-collapse" id="Navbar">
<ul class="navbar-nav ml-auto font-weight-bolder">
<li class="nav-item">
<a href="#About" class="nav-link text-info">About</a>
</li>
<li class="nav-item">
<a href="#Skills" class="nav-link text-info">Skills</a>
</li>
<li class="nav-item">
<a href="#experienced" class="nav-link text-info">Experience</a>
</li>
<li class="nav-item">
<a href="#Projects" class="nav-link text-info">Projects</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<!--Navbar END-->
<!--ShowCase START-->
<div id="bg-img"></div>
<!--ShowCase END-->
<!--About me START-->
<section id="About">
<div class="container">
<div class="row">
<div class="col">
<div id="AboutData">
<div class="card bg-white">
<div class="card-title my-5">
<div class="media">
<img
class="img-fluid rounded-top mx-5 d-none d-lg-block"
src="src/img/me.png"
alt="Personal photo"
>
<div class="media-body w-100">
<h3 class="h1-md h1-lg h3-sm pl-4">
I'm Dmytro
</h3>
<p class="text-muted pl-4">
JavaScript Engineer
</p>
<div class="container">
<div class="container d-flex-row vertical-line ml-4">
<div class="row">
<div class="col-lg-12 my-2">
<div class="d-flex">
<div class="text-muted pr-2">Email:</div>
<div>
<a href="mailto:[email protected]">
</a>
</div>
</div>
</div>
<div class="col-lg-12 my-2">
<div class="d-flex">
<div class="text-muted pr-2">Phone:</div>
<div>
<a href="tel:+380958052625">
+38 095 805 26 25
</a>
</div>
</div>
</div>
<div class="col-lg-12 my-2">
<div class="d-flex">
<div class="text-muted pr-2">Skype:</div>
<div>
<a href="skype:dm.onysko?chat">
dm.onysko
</a>
</div>
</div>
</div>
<div class="col-lg-12 my-2">
<div class="d-flex">
<div class="text-muted pr-2">Telegram:</div>
<div>
<a href="http://t.me/dmytroonysko_work" target="_blank">
dmytroonysko_work
</a>
</div>
</div>
</div>
<div class="col-lg-12 my-2">
<div class="d-flex">
<div class="text-muted pr-2">English:</div>
<div>
B1
</div>
</div>
</div>
<div class="col-lg-12 mt-2">
<div class="d-flex">
<div class="text-muted pr-2">Age:</div>
<div class="pb-0">
<span id="currentAge">Age</span> years old
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card-footer bg-banner bg-dark text-right">
<a href="https://github.com/dmytroonysko" class="social-icons" target="_blank"><i
class="fab fa-github fa-2x mx-3"></i></a>
<a href="https://www.linkedin.com/in/dmytroonysko/" class="social-icons" target="_blank"><i
class="fab fa-linkedin fa-2x mx-5"></i></a>
<a href="https://twitter.com/dmytroonysko" class="social-icons" target="_blank"><i
class="fab fa-twitter sm-fa-1x fa-2x mx-5"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container mt-5" id="AboutMe">
<div class="row">
<div class="col">
<span class="bg-info text-white">About Me</span>
<hr class="bg-info"/>
<div class="card p-4">
<div class="card-header text-left">
<span class="text-muted pl-0">Why me:</span>
I turn my experience background in various business fields into your profit!
</div>
<div class="card-header text-left">
<span class="text-muted pl-0">At the moment I'm considering offers:</span> - in the Chernivtsi or
remotely.
</div>
<div class="card-header text-left">
<span class="text-muted pl-0">Ready for any adequate conditions and offers:</span>- full-time,
part-time, internship, individual contract, startups, partnership.
</div>
</div>
</div>
</div>
</div>
</section>
<!--About me END-->
<!--Skills START-->
<section id="Skills" class="mt-5">
<div class="container">
<span class="bg-info text-white">
Skills
</span>
<hr class="bg-info"/>
<div class="row">
<div class="col">
<div class="card bg-white">
<div class="card-body">
<div id="progress-html">
<h3 class="text-uppercase mx-3 mt-0">
html
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-success text-right">95%</div>
</div>
</div>
<div id="progress-css">
<h3 class="text-uppercase mx-3">
css
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-success text-right">95%</div>
</div>
</div>
<div id="progress-sass-less-scss">
<h3 class="text-uppercase mx-3">
sass, less, scss
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-success text-right">70%</div>
</div>
</div>
<div id="progress-flex-grid">
<h3 class="mx-3">
Bootstrap, Flex, Grid
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-success text-right">70%</div>
</div>
</div>
<div id="progress-js">
<h3 class="mx-3">
JavaScript
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-success text-right">70%</div>
</div>
</div>
<div id="progress-jquery">
<h3 class="mx-3">
jQuery
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-info text-right">45%</div>
</div>
</div>
<div id="progress-react">
<h3 class="mx-3">
ReactJS
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-info text-right">30%</div>
</div>
</div>
<div id="progress-vue">
<h3 class="mx-3">
VueJS
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-info text-right">10%</div>
</div>
</div>
<div id="progress-node">
<h3 class="mx-3">
NodeJS
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-info text-right">10%</div>
</div>
</div>
<div id="progress-git">
<h3 class="text-uppercase mx-3">
git
</h3>
<div class="progress mx-3">
<div class="progress-bar bg-success text-right">60%</div>
</div>
</div>
</div>
<div id="Experience" class="card-footer bg-banner bg-dark">
<div class="container text-white text-center">
<h1 id="experienced" class="mb-2">Usage experience:</h1>
<div class="row">
<div class="col col-12 col-lg-4">
<h5 class="card-header">Libraries, Frameworks, CMS, PL:</h5>
<p class="card-footer">
<strong>VueJS</strong>;<br><strong>ReactJS</strong>(bootstrap, router-dom, prop-types), Gatsby;<br><strong>NodeJS</strong>(express, nodemon, uuid);
<strong>jQuery</strong>(Owl-carousel, Magnific-popup, scrollrevealJS, ScrollMagic), GSAP(Timeline-Lite, TweenMax,
CSSPlugin);<br><strong>Bootstrap:</strong> 3, 4, 5;<br><strong>Other:</strong> WP, OctoberCMS, eJS, PHP
</p>
</div>
<div class="col col-12 col-lg-4">
<h5 class="card-header">Technics:</h5>
<p class="card-footer">
Understanding: OOP, KISS, DRY, YAGNI, ES6+, API, JSON
</p>
</div>
<div class="col col-12 col-lg-4">
<h5 class="card-header">Tools:</h5>
<p class="card-footer">
Git(github, gitlab, bitbucket), Firebase, Fontawesome, Google-Fonts, CLI(linux,
windows, git, gh-pages), Photoshop, Figma, VSCode, JetBrains(PHPStorm, WebStorm)
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Skills END-->
<!--Projects START-->
<section id="Projects">
<div class="container mt-5">
<span class="bg-info text-white">
Projects
</span>
<hr class="bg-info"/>
<div class="row">
<div class="col text-center">
<h2 class=" text-center">Summary: 35 pcs</h2>
<h6 class="text-muted">Commerce x2, Training x33</h6>
</div>
</div>
<div class="row projects-list">
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Postman Replica
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
This is a REST-API ...
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p>
VanillaJS
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>axios, bootstrap, snowpack, pretty-bytes, codemirror</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://github.com/dmytroony/learning/tree/master/projects/fullstack/vue-node/contacts-app"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Contacts: fullstack REST-API
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
This is a REST-API app uses nodeJS for the backend and vueJS for the frontend.
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p>
NodeJS, VueJS
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>express, uuid, nodemon, bootstrap</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://github.com/dmytroony/learning/tree/master/projects/fullstack/vue-node/contacts-app"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Vue Todo-app
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
The first app on the VueJS. Used routing, connected to the jsonplaceholder, added the sorting function
that used the "computed".
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p class="text-uppercase">
VueJS
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>vue-router</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://vue-todo1app.web.app/" class="btn text-white" target="_blank" title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/javascript/frameworks/vue/crash-course"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Face & Emotions Detection
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
App that using algorithm tensorflowJS for detection your face in realtime and your emotions
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p class="text-uppercase">
js
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>face-apiJS</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://face-emotions-detection.web.app/" class="btn text-white" target="_blank" title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/projects/html_css_js/realtime-face-detection"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Github Jobs (API)
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
React app for searching a job on the
<a href="https://jobs.github.com" title="Github Jobs" target="_blank">
Github Jobs
</a>. Its can to parse and to search jobs with their descriptions.
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p>
ReactJS
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>react-bootstrap, axios, react-markdown</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://github-jobs-api.web.app/" class="btn text-white" target="_blank" title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/projects/React/gh-jobs-api-app"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
The Rosa
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
Landing page of the restaurant "The Rose"
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p class="text-uppercase">
html5, css3, js
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>scrollrevealJS</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<!-- <a href="#" class="btn text-white" target="_blank" title="Preview image">-->
<!-- <i class="fas fa-images fa-2x m-0"></i>-->
<!-- </a>-->
<a href="https://the-rosa-5946b.web.app/" class="btn text-white" target="_blank" title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/projects/html_css_js/the-rosa_responsive"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Developer portfolio 1
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
Simple and lightweight template for a web developer portfolio
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p class="text-uppercase">
html5, css3, js
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>ScrollMagic, GSAP(Timeline-Lite, TweenMax, CSSPlugin)</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://devsportfolio1.web.app/" class="btn text-white" target="_blank" title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/projects/html_css_js/devsportfolio_1"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Whackamole game
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
A simple game with code without using frameworks or libraries. You need to catch an animal
(press LMB).
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p class="text-uppercase">
html5, css3, js
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>none</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://whackamole-game.web.app/" class="btn text-white" target="_blank" title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/projects/JavaScript30/whackAMoleGame"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Apple Replica
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
A bit of the "Apple" homepage
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p class="text-uppercase">
html5, css3, js
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>none</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://apple-replica-3a408.web.app/" class="btn text-white" target="_blank"
title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/projects/html_css_js/apple_replica"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Site React-app 2
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
Site app with a carousel, a pop-up window and a parallax effect.
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p>
ReactJS
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>react-bootstrap, react-router-dom</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://react-site2app.web.app/" class="btn text-white" target="_blank" title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/javascript/frameworks/react/site2app"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
ToDo React-app 2
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
Simple Todo app with animations and effects. Used Routing and realtime firebaseDB.
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p>
ReactJS, firebaseDB
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>react-bootstrap, react-router-dom</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://react-todo4app.web.app/" class="btn text-white" target="_blank" title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/javascript/frameworks/react/todo4app"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
eMail Template
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
An adaptive eMail layout. Made on tables, HTML4 and used inline styles. Its works
cross-browser, adaptively, plus on the most popular mail clients like a Gmail, Outlook,
Bat, Mailspring, Thunderbird, other. Optimized to the spam filters any mail services. I also
rewrote and changed the layout of all the email templates of the hosting service for UK, RU
EN locales.
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p>
HTML4, CSS, inline styles, eJS
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>none</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Commerce</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://email-template-9f6c2.web.app/" class="btn text-white" target="_blank"
title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Developer portfolio on Bootstrap4
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
A nice and colorful portfolio template. Used animations, transitions, fontawesome.
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p class="text-uppercase">
html5, css3, js
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>Bootstrap4, jQuery, Owl-carousel, Magnific-popup</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://portfolio1-bootstrap.web.app/" class="btn text-white" target="_blank"
title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/projects/Bootstrap4/portfolio_1"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Site React-app 1
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
My first react app. Realized home page site app with a carousel and some pages.
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p>
ReactJS
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>react-bootstrap</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>
</div>
</div>
<div class="card-footer bg-dark text-center py-1">
<a href="https://react-site1app.web.app/" class="btn text-white" target="_blank"
title="Demo">
<svg style="width:32px;height:32px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M20,18.69L12.7,22.74C12.2,23 11.7,23 11.2,22.74L4,18.69L17.05,5.54L17.4,5.44C17.7,5.44 17.87,5.57 17.9,5.84L20,18.69M9.35,5.74L4.8,13.29L6.7,1.34C6.73,1.07 6.9,0.94 7.2,0.94C7.4,0.94 7.53,1 7.6,1.19L9.75,5.14L9.35,5.74M13.85,7L4.3,16.59L11.55,4.29C11.65,4.09 11.8,4 12,4C12.2,4 12.33,4.09 12.4,4.29L13.85,7Z"/>
</svg>
</a>
<a href="https://github.com/dmytroony/learning/tree/master/javascript/frameworks/react/my1app"
class="btn text-white" target="_blank" title="Source Code">
<i class="fab fa-github fa-2x m-0"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 my-3">
<div class="card bg-white d-flex flex-col">
<div class="card-header text-center bg-dark">
<h3 class="card-title text-white my-0">
Pricing calculator
</h3>
</div>
<div class="card-body">
<p class="text-justify px-3">
A Calculator of the web development pricing. Includes calculations: types of a site, design,
admin-panel, SEO metrics, time to develop.
</p>
<div class="container border-2">
<div class="row">
<div class="col col-12 col-sm-4 col-lg-4 text-center">
<div class="text-muted pb-0">Tech stack:</div>
<p class="text-uppercase">
html5, css3, js, php
</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Used libs:</div>
<p>none</p>
</div>
<div class="col col-12 col-sm-4 col-lg-4 mt-0 text-center">
<div class="text-muted">Type:</div>
<p>Training</p>
</div>
</div>