-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 3.25 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
<!-- Ми повідомляємо браузеру, як обробити цю сторінку -->
<!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>Volodymyr Mykolaichuk</title>
<!-- Підключаємо CSS -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">
<!-- Підключаємо favicon (анімований тільки у Firefox)-->
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<div class="profile-card">
<figure class="profile-card_img">
<img src="photo.png" alt="my photo">
</figure>
<div class="profile-card_desc">
<h1>Volodymyr Mykolaichuk</h1>
<div>Front-end developer</div>
<div style="display:flex; align-items:center; gap:10px; justify-content: center;">
<span> Ukraine, Lutsk </span>
</div>
</div>
<!-- <div class="profile-card_info">
<div>
<div>X</div>
<div>Projects</div>
</div>
</div> -->
<div class="profile-card_social">
<a href=https://www.linkedin.com/in/volodymyr-mykolaichuk-864375251/ target="_blank" class="linkedin">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-linkedin" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<rect x="4" y="4" width="16" height="16" rx="2"></rect>
<line x1="8" y1="11" x2="8" y2="16"></line>
<line x1="8" y1="8" x2="8" y2="8.01"></line>
<line x1="12" y1="16" x2="12" y2="11"></line>
<path d="M16 16v-3a2 2 0 0 0 -4 0"></path>
</svg></a>
<a href="https://github.com/Webbb3" target="_blank" class="github">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-github" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"></path>
</svg></a>
</div>
<div class="profile-card_actions">
<button class="blue" onClick="window.open('mailto:[email protected]')"> Send Email </button>
<button class="purple" onClick="window.open('https://webbb3.github.io/portfolio/');"> Projects </button>
</div>
</div>
</body>
</html>