blob: 1a9168cc6285a5590fc4c5891c062cb1d0d47c29 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Reading corner</title>
<style>
body {
color: black;
background-image: url('images/reading_background.jpg');
}
table {
color: black;
background-color: #bebebe;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
}
</style>
</head>
<body>
<a href="index.html"><img src="images/back_home.png" alt="Back to home page"/></a>
<center>
<table border="1" width="60%">
<tr>
<td>
<h2>Why do a boring old person thing like read?</h2>
<p>
I use to dislike reading because I thought reading was for boring old people.
It turned out I was correct, reading is for boring old people. Than I became
a boring old person. So now I read.
</p>
<h2>How to find a good book</h2>
<p>
The more questons that answer with yes the more likely it is that the book is
worth a read:
</p>
<ul>
<li>Do christians dislike the book?</li>
<li>Did a school board in florida or texas try to ban it?</li>
<li>Is the author mentally insane?</li>
<li>Do book reviewers struggle to wrap their head around it?</li>
</ul>
</td>
</tr>
</table>
</center>
</body>
</html>
|