-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (143 loc) · 4.11 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="ru">
<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">
<meta name="description"
content="iswebdev - это сообщество веб разработчиков, энтузиастов, готовых делиться своими знаниями, опытом и мотивацией между собой.">
<meta property="og:type" content="website" />
<meta property="og:title"
content="iswebdev - это сообщество веб разработчиков, энтузиастов, готовых делиться своими знаниями, опытом и мотивацией между собой." />
<meta property="og:image" content="favicon.png" />
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<title>iswebdev</title>
<meta name="yandex-verification" content="50af82dc36e2431a" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inconsolata', Arial, sans-serif;
background: #2b2b2b;
color: #ffffff;
}
a {
text-decoration: none;
color: white;
font-family: Arial, sans-serif;
font-size: 1rem;
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
max-width: max-content;
margin: 0 auto;
gap: 1.2rem;
padding-left: 15px;
padding-right: 15px;
}
.title {
font-size: clamp(1.4rem, 2.5vw, 2.5rem);
}
.links {
display: flex;
gap: 1rem;
align-items: flex-start;
flex-wrap: wrap;
justify-content: space-evenly;
}
.links a {
flex-shrink: 0;
flex-grow: 1;
}
.blink {
animation: blink 1s infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.projects {
margin-top: 2rem;
}
.projects ul {
display: flex;
flex-direction: column;
gap: 1rem;
list-style: none;
}
.projects h2 {
text-align: center;
font-size: clamp(1.4rem, 2.5vw, 1.5rem);
margin-bottom: 1.5rem;
}
.projects li {}
.projects li p {
line-height: 150%;
}
.projects ul li a {
font-weight: 700;
text-decoration: underline;
/* font-size: 1.2rem; */
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">iswebdev/> rm -rf sur<span class="blink">_</span></h1>
<div class="links">
<a href="https://vk.com/iswebdev">VK</a>
<a href="https://www.youtube.com/@iswebdev">YouTube</a>
<a href="https://t.me/iswebdev">Telegram</a>
<a href="https://dzen.ru/iswebdev">Dzen</a>
<a target="_blank" href="https://gogs.iswebdev.ru">GOGS</a>
<a target="_blank" href="https://github.com/iswebdevru">GitHub</a>
</div>
<div class="projects">
<h2>Наши проекты</h2>
<ul>
<li>
<p><a href="https://rcenext.ru/">RCENext</a> - веб-приложение парсер расписания РКЭ</p>
</li>
<li>
<p> <a href="https://кодчек.ркэ.рф">КодЧек</a> - платформа для онлайн-практики алгоритмов и задач по
программированию</p>
</li>
</ul>
</div>
</div>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function (m, e, t, r, i, k, a) {
m[i] = m[i] || function () { (m[i].a = m[i].a || []).push(arguments) };
m[i].l = 1 * new Date();
for (var j = 0; j < document.scripts.length; j++) { if (document.scripts[j].src === r) { return; } }
k = e.createElement(t), a = e.getElementsByTagName(t)[0], k.async = 1, k.src = r, a.parentNode.insertBefore(k, a)
})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(94461365, "init", {
clickmap: true,
trackLinks: true,
accurateTrackBounce: true
});
</script>
<noscript>
<div><img src="https://mc.yandex.ru/watch/94461365" style="position:absolute; left:-9999px;" alt="" /></div>
</noscript>
<!-- /Yandex.Metrika counter -->
</body>
</html>