-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (106 loc) · 4.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav id="navbar">
<ul>
<li><a href="#welcome-section">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contacts">Contacts</a></li>
</ul>
</nav>
<section id="welcome-section">
<div id="welcome-text">
<h1>Hello! I am <span style="color:#ff7a7a;">Dmitry</span></h1>
<span>Front-end Web developer</span>
</div>
</section>
<section id="projects">
<h1>
<span style="color:#ff7a7a;"><</span>
My Recent Jobs
<span style="color:#ff7a7a;">/></span>
</h1>
<div id="projects-container">
<a class="project-tile" href="https://polander.github.io/react-slider/"
target="_blank">
<h3>React Carousel</h3>
<img src="https://i.ibb.co/hRfqtxL/2020-10-06-22-09-33.png"
alt="Carousel Preview">
</a>
<a class="project-tile" href="https://codepen.io/deembvss/full/oNbPwro"
target="_blank">
<h3>React Calculator</h3>
<img src="https://assets.codepen.io/4589299/internal/screenshots/pens/oNbPwro.default.png"
alt="Calculator Preview">
</a>
<a class="project-tile" href="https://codepen.io/deembvss/full/OJMwvYG"
target="_blank">
<h3>React Drum Machine</h3>
<img src="https://assets.codepen.io/4589299/internal/screenshots/pens/OJMwvYG.default.png"
alt="Drum Machine Preview">
</a>
<a class="project-tile" href="https://codepen.io/deembvss/full/mdVaYoY"
target="_blank">
<h3>React Pomodoro Clock</h3>
<img src="https://assets.codepen.io/4589299/internal/screenshots/pens/mdVaYoY.default.png"
alt="Pomodoro Clock preview">
</a>
<a class="project-tile" href="https://codepen.io/deembvss/full/BajYNwe"
target="_blank">
<h3>React Markdown Previewer</h3>
<img src="https://assets.codepen.io/4589299/internal/screenshots/pens/BajYNwe.default.png"
alt="Mardown Previewer preview">
</a>
<a class="project-tile" href="https://codepen.io/deembvss/full/dyGxKZb"
target="_blank">
<h3>Random Quote Machine</h3>
<img src="https://assets.codepen.io/4589299/internal/screenshots/pens/dyGxKZb.default.png"
alt="Quote Machine preview">
</a>
<a class="project-tile" href="https://codepen.io/deembvss/full/PoPMaPx"
target="_blank">
<h3>Survey form</h3>
<img src="https://assets.codepen.io/4589299/internal/screenshots/pens/PoPMaPx.default.png"
alt="Survey form preview">
</a>
<a class="project-tile" href="https://codepen.io/deembvss/full/RwrwvzB"
target="_blank">
<h3>Landing Page</h3>
<img src="https://assets.codepen.io/4589299/internal/screenshots/pens/RwrwvzB.default.png"
alt="Landing page preview">
</a>
<a class="project-tile" href="https://codepen.io/deembvss/full/PoZqYvB"
target="_blank">
<h3>Technical Documentation</h3>
<img src="https://assets.codepen.io/4589299/internal/screenshots/pens/PoZqYvB.default.png"
alt="Technical documentation page preview">
</a>
</div>
<button id="btn-show" onclick="toggleProjects()">Show more..</button>
</section>
<section id="contacts">
<h1>Contact me</h1>
<div id="contacts-container">
<a class="contact" href="https://github.com/polander" target="_blank">
<img class="contact-icon" src="https://i.ibb.co/cwb1y84/github-153-675523.png" alt="Github icon">
<span>Github</span>
</a>
<a class="contact" href="mailto:dmitry.tarasov4@gmail.com">
<img class="contact-icon" src="https://i.ibb.co/PGQ3fk5/white-mail-icon-png-6.png" alt="Email icon">
<span>E-mail</span>
</a>
<a class="contact" href="https://www.facebook.com/polander95/" target="_blank">
<img class="contact-icon" src="https://i.ibb.co/myj74NY/facebook-7-xxl.png" alt="Facebook icon">
<span>Facebook</span>
</a>
</div>
</section>
<script src="script.js"></script>
</body>
</html>