This repository has been archived by the owner on Apr 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (60 loc) · 2.28 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
<html>
<head>
<title>KONG</title>
<style>
.box {
border-style: solid;
border-width: 4px;
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 400px;
height: 130px;
text-align: center;
align-content: center;
}
.box p {
display: inline-block;
font-size: 1.7em;
}
.box a {
display: inline-block;
}
</style>
</head>
<!--
/$$ /$$ /$$
| $$| $$|__/
/$$$$$$$ /$$ /$$| $$| $$ /$$ /$$ /$$ /$$$$$$$
| $$__ $$| $$ | $$| $$| $$| $$| $$ | $$ /$$_____/
| $$ \ $$| $$ | $$| $$| $$| $$| $$ | $$| $$$$$$
| $$ | $$| $$ | $$| $$| $$| $$| $$ | $$ \____ $$
| $$ | $$| $$$$$$/| $$| $$| $$| $$$$$$/ /$$$$$$$/
|__/ |__/ \______/ |__/|__/|__/ \______/ |_______/
/$$
|__/
/$$ /$$$$$$$
| $$| $$__ $$
| $$| $$ \ $$
| $$| $$ | $$
| $$| $$ | $$
|__/|__/ |__/
/$$
| $$
/$$ /$$ /$$$$$$ /$$$$$$ | $$$$$$$ /$$$$$$
| $$ /$$//$$__ $$ /$$__ $$| $$__ $$ |____ $$
\ $$/$$/| $$$$$$$$| $$ \__/| $$ \ $$ /$$$$$$$
\ $$$/ | $$_____/| $$ | $$ | $$ /$$__ $$
\ $/ | $$$$$$$| $$ | $$$$$$$/| $$$$$$$
\_/ \_______/|__/ |_______/ \_______/
-->
<body>
<div class="box">
<div><p>KONG</p></div>
<a href="mailto:[email protected]">say hello</a>
</div>
</body>
</html>