-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplug.html
48 lines (44 loc) · 1.33 KB
/
plug.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Сайт в разработке</title>
<style>
html, body {
height: 100%;
}
html {
font-family: Calibri, Tahoma, sans-serif;
}
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
.container {
text-align: center;
}
.link-gray {
color: #999;
}
.link-gray:hover {
color: #333;
}
</style>
</head>
<body>
<div class="container">
<h1>Сайт в разработке</h1>
<p>Вы можете посетить нашу
<strong>
<a href="http://vk.com/public50285202" target="_blanc">группу во Вконтакте</a>
</strong>
</p>
<p>
<a href="https://www.jino.ru/" class="link-gray">Джино</a>
</p>
</div>
</body>
</html>