-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 1.6 KB
/
index.html
File metadata and controls
53 lines (52 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,700&display=swap" rel="stylesheet">
<title>ого!</title>
<style>
* {
padding: 0;
margin: 0;
}
body {
background-color: #0a0a0a;
}
.flex-wrap {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Roboto', sans-serif;
font-weight: 300;
text-align: center;
color: #fff;
}
.flex-wrap p {
font-size: 1.6rem;
margin-bottom: 10px;
}
.flex-wrap a {
font-weight: 700;
text-decoration: none;
color: lightgray;
display: block;
}
.flex-wrap a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="flex-wrap">
<div>
<p>Вы зашли на личную страничку Гринвальд Вячеслава!</p>
<a href="https://vk.com/gora_pl" target="_blank">Моя личная страничка ВКонтакте</a>
<a href="https://github.com/Vyachee" target="_blank">Моя личная страничка GitHub</a>
</div>
</div>
</body>
</html>