-
Notifications
You must be signed in to change notification settings - Fork 0
/
books.html
37 lines (32 loc) · 1.74 KB
/
books.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My library</title>
</head>
<body>
<h1>My top book recommendations</h1>
<img src="images/design.svg"/>
<ol>
<h2>The list has multiple genres and a brief description about them</h2>
<li>
<h3>Rich Dad, Poor Dad</h3>
<p>This no.01 best selling book by Robert Kiyosaki explains personal finance to the average individual without overwhelming financial terms and jargon</p>
</li>
<li>
<h3>Kitchen Confidential</h3>
<p>The culinary tales of late celebrity chef Anthony Bourdain is a must read for anyone thinking of working in the culinary industry. The book is packed with anecdotes of the cehfs early career and advice he has to offer to aspiring chefs. His enthusiastic story telling makes the book very interesting and almost makes the reader forget they're reading a non-fictional book</p>
</li>
<li>
<h3>The Monk Who Sold His Ferrarri</h3>
<p>Robin Sharma has laid out his secrets in living a fulfilling life in the form of a conversation between a lawyer and his mentor(the monk who sold his ferrarri). The book give a lot of insight about the simplistic life monks in the Indian moutains lead. This book istruly an eye opener and can change your perspective on life.</p>
</li>
<li>
<h3>The Art of War</h3>
<p>Sun Tzu describes the dogma used in overcoming many battles in Ancient China. These principles can be applied to various aspects of life</p>
</li>
</ol>
</body>
</html>