-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (102 loc) · 3.14 KB
/
index.html
File metadata and controls
106 lines (102 loc) · 3.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Резюме Сергеевой Дарьи</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background: #007bff;
color: white;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-size: 2.5em;
}
h2 {
color: #007bff;
margin-top: 20px;
}
.container {
max-width: 800px;
margin: 20px auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 10px 0;
}
.contact-info {
margin-bottom: 20px;
}
footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>Сергеева Дарья</h1>
<p>Acronis Maintenance Engineer</p>
</header>
<div class="container">
<section class="contact-info">
<h2>Контакты</h2>
<p>Email: sergeevdsh@gmail.com</p>
<p>Телефон: +7 (123) 456-78-90</p>
<p>GitHub: <a href="https://github.com/ivanov" target="_blank">github.com/sergeevdsh</a></p>
<p>LinkedIn: <a href="https://linkedin.com/in/ivanov" target="_blank">linkedin.com/in/sergeevdsh</a></p>
</section>
<section>
<h2>Образование</h2>
<ul>
<li>НГИЭУ, Факультет информационных технологий, 2019-2023</li>
</ul>
</section>
<section>
<h2>Опыт работы</h2>
<ul>
<li><strong>Компания "technopeak.ae"</strong>, Acronis Maintenance Engineer (2024 - настоящее время)</li>
<li><strong>Компания "samokat.tech"</strong>, IT Support Office Engineer (2023 - 2024)</li>
</ul>
</section>
<section>
<h2>Навыки</h2>
<ul>
<li>SQL (MySQL, DBeaver)</li>
<li>PowerBI (DAX)</li>
<li>RDM(Remote desktop manager)</li>
<li>OTRS, JIRA, Confluence</li>
</ul>
</section>
<section>
<h2>Проекты</h2>
<ul>
<li><strong>Проект "test"</strong> - описание проекта.</li>
<li><strong>Проект "test"</strong> - описание проекта.</li>
</ul>
</section>
</div>
<footer>
<p>© 2024 Сергеева Дарья. Все права защищены.</p>
</footer>
</body>
</html>