-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 loc) · 853 Bytes
/
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
<html>
<head>
<title>Panji</title>
<style>
body {
background-color: 212529;
}
a:link, a:visited, a:hover, a:active {
color: #fdea68;
}
p {
}
p {
font-family: Helvetica;
font-size: 200%;
}
.relative {
position: relative;
}
.container {
position: absolute;
top: 50%;
left: 50%;
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
</style>
</head>
<body>
<div class="relative" style="min-height: 100%">
<div class="container">
<p style="color: #d98d31;"> Welcome to my blog. Nothing to see yet. Check out my <span> <a href="/pullmoon-docs"> discord bot </a> </span> </p>
</div>
</div>
</body>
</html>