-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (63 loc) · 1.91 KB
/
index.html
File metadata and controls
66 lines (63 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dasha Smolnikova - Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Dasha Smolnikova</h1>
<p>Welcome to my portfolio!</p>
</header>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#interests">Interests</a></li>
<li><a href="#projects">Projects</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hi! I'm Dasha, a passionate programmer with a keen interest in technology and reading.</p>
</section>
<section id="education">
<h2>Education</h2>
<ul>
<li>2012-2022: Gymnasium №2</li>
<li>2022-2024: HSE Lyceum</li>
<li>2024-Present: Applied Maths & Informatics, HSE SPB (Bachelor)</li>
</ul>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>TeX</li>
<li>C++</li>
<li>Python</li>
<li>HTML & CSS</li>
</ul>
</section>
<section id="interests">
<h2>Interests</h2>
<p>Programming, Reading</p>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li>Multiple C++ contests</li>
<li>My own portfolio website</li>
<li>Multiple C++ GitHub repositories</li>
</ul>
</section>
</main>
<footer>
<p>© 2023 Dasha Smolnikova. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>