-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (86 loc) · 2.09 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>spokoino.net</title>
<link
href="http://fonts.googleapis.com/css?family=Molengo"
rel="stylesheet"
type="text/css"
/>
<link
rel="openid2.provider"
href="https://openid.stackexchange.com/openid/provider"
/>
<link
rel="openid2.local_id"
href="https://openid.stackexchange.com/user/02351e4a-0c18-4aae-86c2-a44c7769f030"
/>
<meta name="bitcoin" content="12Cw4HVjNhjAKKXPoNbeTT4uBgHNg2K1yw" />
<meta
name="ethereum"
content="0xC73fe7E34eE848A6Ac4fA74A3f1162E384d16e7d"
/>
<style media="screen">
body {
font-family: "Molengo", arial, serif;
font-size: 2em;
margin: 0;
padding: 0;
}
header {
text-align: center;
margin-top: 50px;
}
h1 {
display: inline-block;
font-size: 4em;
text-shadow: 5px 5px 5px #aaa;
transition: all 0.5s ease;
margin: 50px auto;
}
h1:hover {
text-shadow: 0px 0px 30px #ffc;
transform: scale(1.5) rotate(-5deg);
color: #06c;
}
a {
color: #06c;
transition: all 0.5s ease;
}
a:hover {
color: blue;
}
footer {
clear: both;
text-align: center;
font-size: 15px;
}
#badges {
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>spokoino.net</h1>
</header>
<div id="badges">
<a href="https://www.eff.org/join">
<img src="https://www.eff.org/files/eff-join2_0.png" alt="Join EFF!" />
</a>
</div>
<footer>
<p>
This page is
<a
href="http://validator.w3.org/check?uri=http%3A%2F%2Fspokoino.net%2F;st=1"
>HTML5</a
>/<a
href="http://jigsaw.w3.org/css-validator/validator?uri=https%3A%2F%2Fspokoino.net&profile=css3&usermedium=screen&warning=1"
>CSS3</a
>. Hosted by <a href="http://www.github.com">Github</a>.
</p>
</footer>
</body>
</html>