-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (56 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<title>Sorp</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<meta name="keywords" content="sorp,sorpdev">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<link rel="preload" href="/img/avatar.png" as="image" />
<link rel="preload" href="/img/avatar2.png" as="image" />
<link rel="preload" href="/img/avatar3.png" as="image" />
</head>
<style>
html,
body {
background-color: #212121;
height: 100vh;
}
html {
display: table;
margin: auto;
}
body {
display: table-cell;
vertical-align: middle;
}
@font-face {
font-family: f;
src: url("/font.otf");
}
* {
font-size: x-large;
}
#sorp {
font-family: f;
font-size: xxx-large;
color: white;
}
a,
a:visited {
text-decoration: none;
color: rgb(131, 131, 250);
}
</style>
<body>
<span id="sorp">sorps website</span><br>
<a href="https://github.com/sorpdev" target="_self">---github</a>
<a href="https://github.com/sorpdev" target="_self">------</a>
<a href="https://github.com/sorpdev" target="_self">github</a>
<a href="https://github.com/sorpdev" target="_self">------</a>
<a href="https://github.com/sorpdev" target="_self">github---</a>
</body>
</html>