-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
75 lines (71 loc) · 2.06 KB
/
contacts.html
File metadata and controls
75 lines (71 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>@contacts - zabojeb</title>
<link rel="icon" href="favicon.png" />
<link
href="https://fonts.googleapis.com/css2?family=Yatra+One&display=swap"
rel="stylesheet"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<link rel="stylesheet" href="styles/contacts.css" />
</head>
<body>
<div id="p5-canvas"></div>
<div class="content">
<h1>@contacts</h1>
<div class="contacts-text">
Reach out to me through my main social profiles or drop an email. Let's
connect!
</div>
<div class="contact-links">
<a
href="https://github.com/zabojeb"
target="_blank"
class="contact-link github"
>
<span class="icon">🐙</span>GitHub
</a>
<a
href="https://reddit.com/user/zabojeb"
target="_blank"
class="contact-link reddit"
>
<span class="icon">🤖</span>Reddit
</a>
<a
href="https://vk.com/zabojeb"
target="_blank"
class="contact-link vk"
>
<span class="icon">🌐</span>VK
</a>
<a
href="https://t.me/zabojeb"
target="_blank"
class="contact-link telegram"
>
<span class="icon">✈️</span>Telegram
</a>
<a href="https://x.com/zabojeb" target="_blank" class="contact-link x">
<span class="icon">🐦</span>X
</a>
<a href="mailto:zabojeb@bk.ru" class="contact-link email">
<span class="icon">✉️</span>Email
</a>
</div>
</div>
<div class="nav">
<a href="/about">about?</a>
<a href="/projects">$projects</a>
<a href="https://t.me/zabzl">#blog</a>
<a href="/">~home</a>
</div>
<script src="scripts/contacts.js"></script>
</body>
</html>