-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<section class="profile">
<div class="profile-avatar">
<a href="https://t.me/fesawder">
<img class="avatar" src="./img/DSC_2269-min.jpg" alt="avatar">
</a>
</div>
<div class="profile-about">
<h2><a href="https://t.me/fesawder">Vladislav Krygin</a></h2>
<p>Front-end developer</p>
</div>
</section>
<section>
<h2>Projects</h2>
<div class="project">
<h3><a href="/shopping-list">Shopping list</a></h3>
<ul>
<li>React</li>
<li>IndexedDB</li>
<li>Synchronization via Yandex Disk</li>
</ul>
</div>
</section>
</div>
</body>
</html>