-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (80 loc) · 3.01 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
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Smoky Portfolio</title>
<link href="css/normalize.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<header>
<span class="header-item logo">
<a href="index.html">Smoke52ru</a>
</span>
<span class="header-item">
<a href="#works">Мои работы</a>
</span>
<span class="header-item">
<a href="#contacts">Мои контакты</a>
</span>
</header>
<main>
<div class="container-main">
<h1 class="promo-header">Тёма Лапин</h1>
<p class="promo-description">Это я) Начинающий разработчик и всякое такое :)</p>
<hr>
<h2 class="about-header">Обо мне</h2>
<div class="about-description">
<p>Меня зовут Тёма Лапин, я студент-программист,
люблю развиваться и узнавать что-то новое
в сфере IT и разработки.
<br>
<p>Сейчас, например, учусь делать сайты)
<br>
<p>Кодер я не самый опытный, тем более
никогда не работал по специальности,
однако часто подрабатываю программированием.
<p>Курсовые, научные работы, ну вы знаете)
</div>
<hr>
<h2 class="about-header">Мои навыки</h2>
<div class="about-description">
<p>HTML+CSS</p>
<div class="progress-bar">
<div class="progress-value html_css"></div>
</div>
<p>Javascript</p>
<div class="progress-bar">
<div class="progress-value javascript"></div>
</div>
<p>Python</p>
<div class="progress-bar">
<div class="progress-value python"></div>
</div>
<br>
<h4>Алсо:</h4>
<ul>
<li>NodeJS</li>
<li>Git</li>
<li>SQL</li>
<li>C/C++</li>
</ul>
</div>
<hr>
<h2 class="about-header">Мои работы</h2>
<ul id="works">
<li><h3><a href="./works/clock/index.html">Часы</a></h3></li>
<li><h3><a href="./works/mini-flex-gallery/index.html">Flex-галерея</a></h3></li>
<li><h3><a href="./works/drumSample/index.html">Drum-семплер</a></h3></li>
</ul>
</div>
</main>
<footer id="contacts">
<p>Сделано с любовью <3</p>
<a href="https://github.com/Smoke52ru" class="social-icon">
<i class="fa fa-github"></i>
</a>
<p>Telegram: +7 962 517 51 40</p>
</footer>
</body>
</html>