-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
217 lines (178 loc) · 8.14 KB
/
index.html
File metadata and controls
217 lines (178 loc) · 8.14 KB
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
<!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>Peter</title>
<link rel="stylesheet" href="https://fonts.cdnfonts.com/css/roboto">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="img/avatars/main.png">
</head>
<body>
<div class="top"></div>
<header>
<div class="logo">
<img src="img/avatars/main.png" alt="Peter" width="70">
</div>
<nav>
<ul>
<!-- <li><a href="#top">Home</a></li> -->
<li><a href="#top">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#contacts">Contacts</a></li>
</ul>
</nav>
<div class="social">
<a href="https://github.com/Peter-developer01"><img src="img/github-mark.svg" alt="GitHub" width="40"></a>
</div>
</header>
<main>
<section id="about" class="about">
<div class="container">
<h2>About me</h2>
<figure>
<img src="img/photo.png" alt="A photo of me" width="300">
<figcaption>No, this is not my photo. <br> I'll <i>probably</i> upload real photo later</figcaption>
</figure>
<p>I am <strong>Peter</strong>. I am a full-stack developer from Russia.</p>
<p>Some things that I like:</p>
<ul>
<li>Programming</li>
<li title="I don't use Arch btw">Linux</li>
<li>Web development
<ul>
<li>React</li>
<li>Next.js</li>
<li>Laravel</li>
<li>etc.</li>
</ul>
</li>
<li>Nearly everything related to the hardware part of computers, though I'm not very goo<span title="there was a typo here: t">d</span> at it yet.</li>
</ul>
<p>Some things that I don't like:</p>
<ul>
<li>Web design. Ah, how hard it is to make a website look good!</li>
<li>A task without a task! Yes, that happens sometimes.</li>
<li>SEO. I don't exactly understand how it works, but...</li>
<li>Why, why, why did Roboto make "I" (uppercase "i") and "l" (lowercase "L") look same?</li>
</ul>
<h2>The meaning of my avatar</h2>
<p>
This picture:<br>
<blockquote>
<img class="avatar" src="img/avatars/main.png" alt="Peter's avatar" width="90"><br>
</blockquote>
is my avatar. I chose this picture accidentally, it was just the first one that I seriously used, and it looked good.
</p>
<p>
I can make my typing speed about <b>125 WPM</b> if I need it, but for programming I only need about 100-110, so I don't try to type faster any more. Like they say, "хватает за глаза".
</p>
</div>
</section>
<hr>
<section id="skills" class="skills">
<div class="container">
<h2>Skills</h2>
<p>Languages:</p>
<ul>
<li><img src="img/icons/html.svg" alt="HTML" class="skill-icon"> HTML</li>
<li><img src="img/icons/css.svg" alt="CSS" class="skill-icon"> CSS</li>
<li><img src="img/icons/javascript.svg" alt="JavaScript" class="skill-icon"> JavaScript</li>
<li><img src="img/icons/php.svg" alt="PHP" class="skill-icon"> PHP</li>
<li><img src="img/icons/mysql.svg" alt="SQL" class="skill-icon"> SQL</li>
<li><img src="img/icons/python.svg" alt="Python" class="skill-icon"> Python</li>
</ul>
<p>Tools:</p>
<ul>
<li><img src="img/icons/git.svg" alt="Git" class="skill-icon"> Git</li>
<li><img src="img/github-mark.svg" alt="GitHub" class="skill-icon"> GitHub</li>
<li><img src="img/icons/linux.svg" alt="Linux" class="skill-icon"> Linux</li>
<li><img src="img/icons/vscode.svg" alt="VS Code" class="skill-icon"> VS Code</li>
</ul>
<p>Frameworks:</p>
<ul>
<li><img src="img/icons/react.svg" alt="React" class="skill-icon"> React</li>
</ul>
</div>
</section>
<hr>
<section id="projects" class="projects">
<div class="container">
<h2>Projects</h2>
<ul>
<li><a href="https://github.com/Peter-developer01/simple-calculator">Simple (yes) calculator</a></li>
<li><a href="https://ks-design-interior.github.io">An interior design landing page website, with some more features than just a simple landing page</a></li>
</ul>
<p>
That's all for now, I am still a relative beginner and I don't have much projects that I can show. <br>
But I will definitely add more in the future!
</p>
</div>
</section>
<hr>
<section id="experience" class="experience">
<div class="container">
<h2>Experience</h2>
<p>I have 3 years of experience in Full Stack Web Development.</p>
<p>I started learning programming in 9 January, 2022.</p>
<p>I believe that every developer, including me, is <i><b>always</b> learning</i>.</p>
</div>
</section>
<hr>
<section id="education" class="education">
<div class="container">
<h2>Education</h2>
<p>I'm currently learning and coding Full Stack and miscellaneous programming stuff self-taught.</p>
<p>I started learning programming in 9 January, 2022.</p>
<p>In the past, I've been learning on (and should give a thanks to):</p>
<ul>
<li><a href="https://beonmax.com">beONmax</a></li>
<li><a href="https://skillfactory.ru">Skillfactory</a></li>
<li><a href="https://learn.javascript.ru">learn.javascript.ru by Ilya Kantor</a></li>
<li><a href="https://htmlbook.ru">htmlbook.ru and webref.ru by "Влад Мержевич"</a></li>
</ul>
<h3>beONmax</h3>
<p>I started learning on beONmax since Feb 18, 2022 and since then I learnt:</p>
<ul>
<li><img src="img/icons/html.svg" alt="HTML" class="skill-icon"> HTML</li>
<li><img src="img/icons/css.svg" alt="CSS" class="skill-icon"> CSS</li>
<li><img src="img/icons/javascript.svg" alt="JavaScript" class="skill-icon"> JavaScript</li>
<li><img src="img/icons/php.svg" alt="PHP" class="skill-icon"> PHP</li>
<li><img src="img/icons/python.svg" alt="Python" class="skill-icon"> Python</li>
<li><img src="img/icons/react.svg" alt="SQL" class="skill-icon"> React</li>
<li><img src="img/icons/vscode.svg" alt="VS Code" class="skill-icon"> VS Code</li>
</ul>
<h3>Skillfactory</h3>
<p>I started learning on Skillfactory since Sep 2022 (I don't remember the exact date) and since then, along with the rest on other sites/schools, I learnt:</p>
<ul>
<li><img src="img/icons/git.svg" alt="Git" class="skill-icon"> Git</li>
<li><img src="img/github-mark.svg" alt="GitHub" class="skill-icon"> GitHub</li>
<li><img src="img/icons/typescript.svg" alt="TypeScript" class="skill-icon"> TypeScript</li>
</ul>
<p>
I have started on Skillfactory as an interested amateur on their free intensive courses.<br>
Then I started to explore their paid courses. Honestly, they are a bit overpriced.<br>
<small><i>The rest of the story is<span onmouseenter="this.textContent = ' not '" onmouseleave="this.innerHTML = ' '"> </span>coming soon</i></small>
</p>
</div>
</section>
<hr>
<section id="contacts" class="contacts">
<div class="container">
<h2>Contacts</h2>
<p>You can find me on <a href="https://github.com/Peter-developer01"><img src="img/github-mark.svg" alt="GitHub" width="18"> GitHub</a>.</p>
<p>My email is <span class="email"><img src="img/email.png" alt="Peter's email"></span> but bear in mind that I check it rarely, at least, less often than GitHub. Please only write to me if you have something important to say. For anything else use GitHub discussions in Peter-developer01/Peter-developer01.</p>
</div>
</section>
</main>
<footer>
<p>© 2023-2025 Peter</p>
<p>Icons by <a href="https://skillicons.dev">Skill Icons</a>. GitHub logo by <a href="https://github.com/logos">GitHub</a></p>
</footer>
<script src="js/script.js"></script>
</body>
</html>