-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 847 Bytes
/
index.html
File metadata and controls
41 lines (38 loc) · 847 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>lua.lu</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Italiana&subset=latin">
<style>
body{
background: #f8f8f0;
}
h1 {
font: 100 5em "Italiana", "Helvetica Neue", "Open Sans", sans-serif;
width: 10em;
margin: 15% auto;
text-align: center;
color: #aeaeae;
}
footer {
position: absolute;
width: 20em;
}
footer, footer a {
right: 10px;
bottom: 10px;
font: 100 1em "Helvetica Neue", "Open Sans", sans-serif;
color: #ccc;
text-align: right;
text-decoration: none;
}
</style>
</head>
<body>
<h1>lua.lu</h1>
<footer>
© 2014 ~ 2015 and <a href="http://zhu.li">Leigh</a> loves you.
</footer>
</body>
</html>