-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.html
35 lines (32 loc) · 890 Bytes
/
book.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Read Books</title>
</head>
<body>
I have started reading books and my inclination is towards historic and or philosophical novels
some books that i have completed are
<br>
<hr>
<br>
<table border="3">
<thead>
<tr>
<th>book name</th>
<th>book review </th>
</tr>
</thead>
<tr>
<td>mockingbird</td>
<td> very moving, depicts the soceity we live in, great quotes</td>
</tr>
<tr>
<td> 1984 </td>
<td> disturbing at first and then it grows on you,it lets you experience an authoratarian rule and has the deepest sayings </td>
</tr>
</table>
</body>
</html>