-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Klonoa's home page!</title>
<style>
html, body {
height: 100%;
}
body {
font: 86%/150% Segoe UI, Helvetica Neue, Roboto, Arial, sans-serif;
margin: 0 auto;
padding: 0;
background: #000 url(klonoa.jpg) no-repeat fixed top center / cover;
display: flex;
justify-content: center;
align-items: center;
}
.box {
padding: 1em 2em;
background-color:rgba(255,255,255,0.9);
box-shadow:0 2px 6px rgba(100,100,100,0.5);
}
</style>
</head>
<body>
<div class="box">
<h1>Klonoa's homepage!</h1>
<p>Hello everyone! Welcome to Klonoa's homepage!</p>
<p>Please check out <a href="https://forums.untamedheart.us/" target="_blank" rel="dofollow">Untamed Heart</a>, <a href="http://namcohigh.klonoa.org/" target="_blank" rel="dofollow">Namco High</a>, <a href="http://klonoa.wikia.com/" target="_blank">Klonoa Wikia</a> and <a href="http://klonoa.universodegoma.net/" target="_blank" rel="dofollow">Mike's Klonoa site</a> for awesome Klonoa stuff.</p>
<p>To contact me, please send me a PM on <a href="https://forums.untamedheart.us/?action=pm;sa=send;u=37" target="_blank" rel="dofollow">Untamed Heart</a>, you can visit <a href="http://mustafacan.elmaci.net/" target="_blank" rel="dofollow">my blog</a> too!</p>
</div>
</body>
</html>