-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
110 lines (105 loc) · 5.99 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<!-- Название сайта -->
<title>Parad1st | Links</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="./styles.css">
<!-- Лого сайта -->
<link rel="icon" type="image/x-icon" href="/assets/Lovedol.ico">
<!-- Картинка которая будет показываться пока видео не загрузится. Советую добавить первый кадр из видео! -->
<video id="bg-video" muted loop autoplay poster="./assets/poster.png">
<!-- Ниже путь к видео в двух форматах -->
<source src="./assets/video/Darling-In-The-Franxx-_4K_.webm" type="video/webm">
<source src="./assets/video/Darling In The Franxx [4K].mp4" type="video/mp4">
</video>
<div class="overlay"></div>
<script type="module" src="./js/main.js"></script>
</head>
<body>
<div id="vanta-bg">
<header>
<div>
<!-- Аватарка -->
<img src="./assets/profile_picture.jpg" alt="Profile picture"/>
</div>
<!-- Ник и коротко о себе -->
<h3> Parad1st </h3>
<p>Gamer │ Developer │ YouTuber</p>
</header>
<main>
<section>
<div>
<div class="stream_buttons_list">
<ul>
<!-- Ниже ссылки -->
<li class="stream_buttons">
<a target="_blank" href="https://github.com/Parad1st" style="color:#374151; width: 100%; display: flex; justify-content: space-between;">
<img src="./assets/icon/GitHub.svg" height="20" style="margin-right: 20px;"/>
GitHub
<img src="./assets/open.svg" width="20" height="20" style="margin-left: auto"/>
</a>
</li>
<li class="stream_buttons">
<a target="_blank" href="https://www.youtube.com/@Parad1st" style="color:#374151; width: 100%; display: flex; justify-content: space-between;">
<img src="./assets/icon/YouTube.svg" height="20" style="margin-right: 20px;"/>
YouTube
<img src="./assets/open.svg" width="20" height="20" style="margin-left: auto"/>
</a>
</li>
<li class="stream_buttons">
<a target="_blank" href="https://EbanijNEFOR.t.me" style="color:#374151; width: 100%; display: flex; justify-content: space-between;">
<img src="./assets/icon/Telegram.svg" height="20" style="margin-right: 20px;"/>
Telegram
<img src="./assets/open.svg" width="20" height="20" style="margin-left: auto"/>
</a>
</li>
<li class="stream_buttons">
<a target="_blank" href="https://SOP1XSTUDIO.t.me" style="color:#374151; width: 100%; display: flex; justify-content: space-between;">
<img src="./assets/icon/Telegram.svg" height="20" style="margin-right: 20px;"/>
My Studio
<img src="./assets/open.svg" width="20" height="20" style="margin-left: auto"/>
</a>
</li>
<li class="stream_buttons">
<a target="_blank" href="https://vk.com/parad1stik" style="color:#374151; width: 100%; display: flex; justify-content: space-between;">
<img src="./assets/icon/VK.svg" height="20" style="margin-right: 20px;"/>
Вконтакте
<img src="./assets/open.svg" width="20" height="20" style="margin-left: auto"/>
</a>
</li>
<li class="stream_buttons">
<a target="_blank" href="Evolution.html" style="color:#374151; width: 100%; display: flex; justify-content: space-between;">
<img src="./assets/icon/Discord.svg" height="20" style="margin-right: 20px;"/>
Evolution PC Optimization
<img src="./assets/open.svg" width="20" height="20" style="margin-left: auto"/>
</li>
<!-- Ниже кнопка переводит на about.html, но пока что закомментирую её, так как пока в разработке -->
<!--</a>
<li class="link_button_highlight" >
<a target="_blank" href="about.html"
data-info="pre-save-message" style="color: #000000">
Обо мне -->
</a>
</li>
<center>
<p>Вот столько раз посещали этот сайт: </p>
<!-- Счётчик сделан тут - moe-counter.glitch.me -->
<img src="https://count.getloli.com/get/@:parad1st.github.io?theme=rule34" alt=":parad1st.github.io" />
<!-- ПОМЕНЯЙ parad1st.github.io В ССЫЛКЕ НА СВОЁ -->
</center>
</ul>
</div>
</div>
</li>
</ul>
</div>
</section>
</main>
<footer>
<!-- Пожалуйста, не меняй это! Если будешь делать Fork, просто поставь рядом свой ник :) -->
<p>Created by Parad1st.</p>
<a href="https://github.com/Parad1st/parad1st.github.io">fork this page on GitHub</a>
</footer>
</html>