-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 1.7 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
<html>
<head>
<title>Anton Romankov - Software Engineer</title>
<link rel="stylesheet" href="index.css" />
<link rel="icon" href="resources/favicon.png">
<!-- Lightweight client-side loader that feature-detects and load polyfills only when necessary -->
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs@2/webcomponents-loader.min.js"></script>
<!-- Load the element definition -->
<script type="module" src="https://cdn.jsdelivr.net/gh/zerodevx/zero-md@1/src/zero-md.min.js"></script>
</head>
<body>
<div class="sidebar">
<div style="text-align: center">
<a href="/"><img width="140px" src="resources/logo.webp" /></a>
</div>
<div class="navigation">
<h1 style="margin-left: 30px">Anton<br />Romankov</h1>
<a href="#personal">Personal</a>
<a href="#experience">Experience</a>
<a href="#education">Education</a>
<a href="#skills">Skills</a>
</div>
<div id="sbfooter">
<a id="downloadlink" href="anton_romankov.cv.pdf">
<img width="16px" src="resources/download.png">
<span style="padding-left: 8px">Download CV</span>
</a>
</div>
</div>
<div class="main">
<br />
<a id="personal"></a>
<zero-md src="cv/personal.md"></zero-md>
<br /><br />
<a id="experience"></a>
<zero-md src="cv/experience.md"></zero-md>
<br /><br />
<a id="education"></a>
<zero-md src="cv/education.md"></zero-md>
<br /><br />
<a id="skills"></a>
<zero-md src="cv/skills.md"></zero-md>
<br /><br />
</div>
</html>