blob: 9cf2635e0c46c9d72c719c4f8fdcd388cc6f5f3f (
plain) (
blame)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<!--
Based on mozilla's about:mozilla by Henrik Gemal and Alexey Chernyak
Xan Lopez, xan@masilla.org
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Epiphany</title>
<style type="text/css">
html {
background: #3369FF;
color: white;
font-style: italic;
}
#ephytext {
margin-top: 15%;
font-size: 1.3em;
text-align: center;
}
#from {
margin-top: 1em;
font-size: 1.5em;
text-align: right;
}
span {
font-size: 1.0em;
}
</style>
</head>
<body>
<div id="ephytext">
Perfection is achieved, not when there is nothing more to add,
but when there is nothing left to take away.
</div>
<div id="from">
Antoine de Saint-Exupery
</div>
</body>
</html>
|