-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
80 lines (68 loc) · 2.6 KB
/
resume.html
File metadata and controls
80 lines (68 loc) · 2.6 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Резюме Низамова Айдара</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<h1><a href="./index.html" style="color:white;text-decoration:none;">Сайт Низамова Айдара</a></h1>
<p>Мое резюме</p>
<nav>
<ul>
<li><a href="./index.html">Главная</a></li>
<li><a href="./blog.html">Блог</a></li>
<li><a href="./projects.html">Проекты</a></li>
<li><a href="./resume.html">Резюме</a></li>
</ul>
</nav>
</header>
<div class="main-wrapper">
<main class="content">
<h2>Мое резюме</h2>
<h3>Личная информация</h3>
<ul>
<li><strong>Имя:</strong> Низамов Айдар</li>
<li><strong>Дата рождения:</strong> 09.12.2005</li>
<li><strong>Контакты:</strong> fly200fly@gmail.com | +7 (950) 723-35-24</li>
<li><strong>Город:</strong> Челябинск</li>
</ul>
<h3>Образование</h3>
<ul>
<li><strong>Название учебного заведения:</strong> ЧелГУ</li>
<li><strong>Направление:</strong> Программная инженерия</li>
<li><strong>Годы обучения:</strong> 2024-2029</li>
</ul>
<h3>Опыт работы</h3>
<ul>
<li><strong>Отсутствует</strong></li>
</ul>
<h3>Навыки и умения</h3>
<ul>
<li>HTML, CSS, С#, Python</li>
<li>Работа с Git и системами контроля версий</li>
</ul>
</main>
<!-- Боковая панель -->
<aside class="aside">
<h4>Cоцсети</h4>
<ul style="list-style:none;padding-left:0;">
<li><a href="https://github.com/riht7405" target="_blank" style="color:#333;">GitHub</a></li>
<li><a href="https://t.me/yourtelegram" target="_blank" style="color:#333;">Telegram</a></li>
<li><a href="https://vk.com/yourvkprofile" target="_blank" style="color:#333;">VK</a></li>
</ul>
<h4>Контактная информация</h4>
<p>Email: example@mail.com<br/>Телефон: +7 (123) 456-78-90<br/>Город: Ваш город</p>
</aside>
</div>
<!-- Подвал -->
<footer class="footer">
© 2024 Низамов Айдар. Все права защищены.<br/>
<a href="https://github.com/riht7405" target="_blank" style="color:white;">GitHub</a> |
<a href="https://t.me/yourtelegram" target="_blank" style="color:white;">Telegram</a> |
<a href="https://vk.com/yourvkprofile" target="_blank" style="color:white;">VK</a> |
</footer>
</body>
</html>