-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooks.html
More file actions
150 lines (144 loc) · 3.77 KB
/
books.html
File metadata and controls
150 lines (144 loc) · 3.77 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Basil Latif - Books</title>
<meta name="description" content="Top 20 Books That Impacted Me" />
<meta name="author" content="Basil Latif" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Header Section -->
<header>
<h1>Books That Have Impacted Me</h1>
<p>Top 20 Books</p>
</header>
<!-- Navigation Bar -->
<nav class="topnav">
<a href="index.html">Home</a>
<a href="projects.html">Data Science Projects</a>
<a href="ai_portfolio.html">AI Portfolio</a>
<a href="teaching.html">Teaching Portfolio</a>
<a href="consulting.html">Consulting Portfolio</a>
<a href="books.html">Top 20 Books</a>
<a href="contact.html">Contact</a>
</nav>
<!-- Main Container -->
<div class="container">
<section class="career">
<h2>My 20 Most Impactful Books</h2>
<table>
<tr>
<th>Name</th>
<th>Author</th>
<th>Topic</th>
</tr>
<tr>
<td>1 - The Willpower Instinct: How Self-Control Works, Why It Matters, and What You Can Do to Get More of It</td>
<td>Kelly McGonigal</td>
<td>Psychology</td>
</tr>
<tr>
<td>2 - The Power of Habit: Why We Do What We Do in Life and Business</td>
<td>Charles Duhigg</td>
<td>Psychology</td>
</tr>
<tr>
<td>3 - The Courage to Be</td>
<td>Paul Tillich</td>
<td>Religion</td>
</tr>
<tr>
<td>4 - The Rational Optimist: How Prosperity Evolves</td>
<td>Matt Ridley</td>
<td>Economic history</td>
</tr>
<tr>
<td>5 - The 5 Elements of Effective Thinking</td>
<td>Edward B. Burger</td>
<td>Psychology</td>
</tr>
<tr>
<td>6 - Capital in the Twenty First Century</td>
<td>Thomas Pikkety</td>
<td>Economic history</td>
</tr>
<tr>
<td>7 - The Man Who Solved the Market: How Jim Simons Launched the Quant Revolution</td>
<td>Gregory Zuckerman</td>
<td>Finance</td>
</tr>
<tr>
<td>8 - What Every Body is Saying: An Ex-FBI Agent's Guide to Speed-Reading People</td>
<td>Joe Navarro</td>
<td>Psychology</td>
</tr>
<tr>
<td>9 - Blue Ocean Strategy: How to Create Uncontested Market Space and Make the Competition Irrelevant</td>
<td>Chan W. Kim</td>
<td>Business Strategy</td>
</tr>
<tr>
<td>10 - The E-Myth Revisited </td>
<td>Michael Gerber</td>
<td>Business Strategy</td>
</tr>
<tr>
<td>11 - Tao Te Ching </td>
<td>Unnamed</td>
<td>Religion</td>
</tr>
<tr>
<td>12 - Peace is Every Step </td>
<td>Thich Nhat Hanh</td>
<td>Psychology</td>
</tr>
<tr>
<td>13 - Ghandi: An Autobiography </td>
<td>Mahatma Gandhi</td>
<td>Biography</td>
</tr>
<tr>
<td>14 - Long Walk to Freedom </td>
<td>Nelson Mandela</td>
<td>Biography</td>
</tr>
<tr>
<td>15 - How to Win Friends and Influence People</td>
<td>Dale Carnegie</td>
<td>Psychology</td>
</tr>
<tr>
<td>16 - Antifragile: Things That Gain From Disorder</td>
<td>Nassim Nicholas Taleb</td>
<td>Philosophy</td>
</tr>
<tr>
<td>17 - The WEIRDest People in the World: How the West Became Psychologically Peculiar and Particularly Prosperous</td>
<td>Josephy Heinrich</td>
<td>Psychology</td>
</tr>
<tr>
<td>18 - Tough: My Journey to True Power</td>
<td>Terry Crews</td>
<td>Biography</td>
</tr>
<tr>
<td>19 - The Ascent of Money: A Financial History of the World</td>
<td>Niall Ferguson</td>
<td>Finance</td>
</tr>
<tr>
<td>20 - The Success Principles: How to Get From Where You Are to Where You Want to Be</td>
<td>Jack Canfield</td>
<td>Psychology</td>
</tr>
</table>
</section>
</div>
<!-- Footer -->
<footer>
<p>© 2025 Basil Latif. All rights reserved.</p>
</footer>
</body>