-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSomething-To-Think-About.html
More file actions
83 lines (73 loc) · 2.34 KB
/
Something-To-Think-About.html
File metadata and controls
83 lines (73 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Om Godse's blog</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: auto;
max-width: 850px;
padding-left: 16px;
padding-right: 16px;
box-sizing: border-box;
font-family: "Source Sans Pro";
}
li {
line-height: 1.5;
letter-spacing: 0.25px;
}
ul.nav-links {
padding: 0;
}
ul.nav-links li {
margin-bottom: 8px;
list-style-type: none;
}
ul.nav-links a {
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>Something to think about</h1>
<nav>
<ul class="nav-links">
<li><a href="/">Home</a></li>
</ul>
</nav>
</header>
<main>
<ul>
<li>
<b>Richard Feynman</b>
<p>
<q>I learned very early the difference between knowing the name of something and knowing
something.</q>
</p>
</li>
<li>
<b>Albert Einstein</b>
<p>
<q>It’s not that I’m so smart, it’s just that I stay with problems longer.</q>
</p>
</li>
<li>
<b>Calvin Coolidge</b>
<p>
<q>Nothing in this world can take the place of persistence. Talent will not; nothing is more common
than unsuccessful men with talent. Genius will not; unrewarded genius is almost a proverb.
Education will not; the world is full of educated derelicts. Persistence and determination alone
are omnipotent.</q>
</p>
</li>
<li><a href="https://map.simonsarris.com/p/the-most-precious-resource-is-agency">The Most Precious Resource
is Agency
</a></li>
</ul>
</main>
</body>
</html>