-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (35 loc) · 1023 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Don't Panic</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="authors" href="humans.txt" />
<link rel="for robots" href="robots.txt" />
<link rel="about towels" href="towels.txt" />
<style>
body {background-color: #C10C06; color: #FFF; font-family: Arial, sans-serif;}
span {line-height: 0.8em;}
#content {width: 300px; margin: 0 auto; overflow: hidden;}
#header-content {width: 141px; margin: 0 auto;}
#i {margin: 3em 0;}
#d {font-size: 6.2em;}
#p {font-size: 6.2em;}
#a {font-size: 9.1em;}
#c {font-size: 4.1em;}
#t {font-size: 5.2em;}
</style>
</head>
<body>
<div id="content">
<div id="header-content">
<img id="i" src="thgttg.png" alt="The Hitchhiker's Guide to the Galaxy" />
</div>
<span id="d">DON'T</span>
<span id="p">PANIC</span>
<span id="a">AND</span>
<span id="c">CARRY A</span>
<span id="t">TOWEL</span>
</div>
</body>
</html>