Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b43d698

Browse files
authored
html file added
0 parents  commit b43d698

File tree

1 file changed

+110
-0
lines changed

1 file changed

+110
-0
lines changed

index.html

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<!DOCTYPE html>
2+
<html lang="ru">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta name="description" content="Maria Malykh's resume">
7+
<meta name="author" content="Andrew Zhogov">
8+
<link rel="stylesheet" href="./styles/style.css">
9+
<title>Resume</title>
10+
</head>
11+
<body class="body">
12+
<div class="page">
13+
<section class="home" id="home">
14+
<div class="home__darkness">
15+
<nav class="home__darkness__navbar">
16+
<a href="#about">about</a>
17+
<a href="#projects">projects</a>
18+
<a href="#footer">contacts</a>
19+
</nav>
20+
21+
<div class="home__main">
22+
<h3>Welcome</h3>
23+
<h1>I am Maria Malykh</h1>
24+
<br>
25+
<h1>I am a software engineer</h1>
26+
</div>
27+
</div>
28+
</section>
29+
30+
<section class="about" id="about">
31+
<div class="title">
32+
<h1>About Me</h1>
33+
</div>
34+
35+
<div class="flex-row flex-row_about">
36+
<div class="flex-row_about__card">
37+
<h3>interests</h3>
38+
<ul class="flex-row_about__card__list">
39+
<li>Playing the piano</li>
40+
<li>Dancing (Hip-Hop cheer team of MIPT)</li>
41+
<li>Learning English (Level: C1)</li>
42+
<li>Learning Chinese (Level: A1)</li>
43+
<li>Travelling</li>
44+
<li>Cooking</li>
45+
<li>Playing volleyball</li>
46+
</ul>
47+
</div>
48+
<div class="flex-row_about__card">
49+
<h3>skills</h3>
50+
<ul class="flex-row_about__card__list">
51+
<li>Object-oriented programming on C++, Python</li>
52+
<li>Python frameworks: Django, matplotlib, numpy, pandas</li>
53+
<li>Arduino</li>
54+
<li>Frontend development</li>
55+
<li>Database fundamentals</li>
56+
<li>Git</li>
57+
<li>Microelectronics</li>
58+
</ul>
59+
</div>
60+
<div class="flex-row_about__card">
61+
<h3>education</h3>
62+
<ul class="flex-row_about__card__list">
63+
<li>Kirov Physics and Mathematics Lyceum</li>
64+
<li>Kirov summer multi-subject school (2017-2020)</li>
65+
<li>MIPT winter olympiad school (2021-2022)</li>
66+
<li>Innopolis school of olympiad training (2019-2020)</li>
67+
<li>Education Centre of Sirius</li>
68+
<li>Higher School of Software Engineering (since 2022)</li>
69+
</ul>
70+
</div>
71+
</div>
72+
</section>
73+
74+
<section class="projects" id="projects">
75+
<div class="title">
76+
<h1>My Projects</h1>
77+
</div>
78+
79+
<div class="flex-row flex-row_projects">
80+
<div class="flex-row_projects__card flex-row_projects__card_cubesat transition">
81+
<div class="flex-row_projects__card-cover transition">
82+
<a href="https://docs.google.com/document/d/1bicSTlkCiDmHH4FNxk703qvzl9KVp-3eXTy40IYCmHg/edit?usp=sharing" target="_blank">CubeSat 3U</a>
83+
<p></p>
84+
</div>
85+
</div>
86+
87+
<div class="flex-row_projects__card flex-row_projects__card_iss transition">
88+
<div class="flex-row_projects__card-cover transition">
89+
<a href="https://docs.google.com/document/d/1gTpS8f38_BGaj7aJPgqp4g8mB8Z0q5mA/edit?usp=sharing&ouid=100885345940101146073&rtpof=true&sd=true" target="_blank">System "ISS-360"</a>
90+
</div>
91+
</div>
92+
</div>
93+
</section>
94+
95+
<footer class="footer" id="footer">
96+
<div class="flex-row flex-row_footer">
97+
<a href="https://instagram.com/m.malykh_" target="_blank">instagram</a>
98+
<a href="https://vk.com/imnotmasha" target="_blank">vk</a>
99+
<a href="https://t.me/sleep_not_found" target="_blank">telegram</a>
100+
<a href="https://github.com/mariamalykh" target="_blank">github</a>
101+
</div>
102+
103+
<div class="flex-row flex-row_footer">
104+
<p class="ending">Ⓒ 2023, Made by Andrew Zhogov</p>
105+
</div>
106+
</footer>
107+
108+
</div>
109+
</body>
110+
</html>

0 commit comments

Comments
 (0)