-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsayings.html
50 lines (44 loc) · 901 Bytes
/
sayings.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>David Harvey-Macaulay :: Sayings</title>
<style>
body {
background: #f0f0f0;
color: #2e3436;
font-family: 'DejaVu Sans', sans-serif;
margin: auto;
max-width: 40em;
padding-bottom: 30px;
}
h1 {
text-align: center;
padding: 20px;
}
img {
border: solid 1px #2e3436;
display: block;
margin: auto;
max-width: 40em;
}
img#me {
width: 40%;
margin-bottom: 30px;
}
img#shadow {
margin-bottom: 30px;
}
p {
text-align: justify;
}
</style>
</head>
<body>
<h1>Favourite Sayings</h1>
<p>Never argue with a fool, people might not know the difference.</p>
<p>To err is human.</p>
<p>Hindsight is a wonderful thing.</p>
<p>Be the change you want to see in the world.</p>
</body>
</html>