-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (66 loc) · 2.71 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
<!doctype html>
<html lang="en">
<head>
<title>Illia's Basement</title>
<meta charset="utf-8">
<link rel="stylesheet" href="commonStyle.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Fira+Sans&display=swap" rel="stylesheet">
</head>
<body>
<header class="block">
Illia's Basement 😇
</header>
<nav>
<ul>
<li class="selected">
<a href="index.html"
alt="Link to main page">
Home 😎
</a>
</li>
<li>
<a href="projects.html"
alt="Link to page with projects">
Projects 🤓
</a>
</li>
<li>
<a href="platformer/platformer.html"
alt="Link to game (platformer)">
Platformer 🤩
</a>
</li>
</ul>
</nav>
<div class="container">
<div class="logo">
<img
src="res/me.jpg"
class="myPhoto"
height="400px"
alt="Illia's Piskurov photo">
</div>
<div class="profile">
<h1>Illia Piskurov</h1>
</div>
<p class="profile">
C# 🥰, Java 🤓, JavaScript 🧐 developer.
</p>
<div>
<button class="button">
<a href="https://github.com/illia-piskurov" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-github" width="44" height="44" viewBox="0 0 24 24" stroke-width="1.5" stroke="#282828" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<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" />
</svg>
</a>
</button>
</div>
</div>
<footer class="block">
© 2023, Illia's Basement.
</footer>
</body>
</html>