-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathQuotes.html
69 lines (58 loc) · 3.27 KB
/
Quotes.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
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="flexy.css">
<title>Quotes</title>
<style>
p {
padding: 0.8em;
color: #111;
background-color: #e6e6e6;
margin-bottom: 10px;
border-radius: 15px;
}
h1 {
text-align: center;
background-color: #efefef;
padding: 0.4em;
margin-bottom: 10px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
}
</style>
</head>
<body>
<div class="main">
<div class="dp100">
<h1>Quotes on Life</h1>
</div>
<div class="dp20">
<p>"There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle.” – Albert Einstein</p>
<p>“We must not cease from exploration. And the end of all our exploring will be to arrive where we began and to know the place for the first time.” – T. S. Eliot</p>
<p>There’s no next time. It’s now or never.</p>
</div>
<div class="dp20">
<p>“And in the end, it’s not the years in your life that count. It’s the life in your years.” – Abraham Lincoln</p>
<p>“For every effect there is a root cause. Find and address the root cause rather than try to fix the effect, as there is no end to the latter.”</p>
<p>“When you don’t get what you want, you suffer. If you get it, you suffer too since you can’t hold on to it forever.” – Peaceful Warrior, on the fallacy of attachment</p>
</div>
<div class="dp20">
<p>“When one door closes, another opens; but we often look so long and so regretfully upon the closed door that we do not see the one which has opened for us.” – Alexander Graham Bell</p>
<p>“There are no ordinary moments. There is always something going on.” – Peaceful Warrior</p>
<p>“What lies behind us and what lies before us are tiny matters compared to what lies within us” – Ralph Waldo Emerson</p>
</div>
<div class="dp20">
<p>“Your time is limited, don’t waste it living someone else’s life. Don’t be trapped by dogma, which is living the result of other people’s thinking. Don’t let the noise of other’s opinion drowned your own inner voice. And most important, have the courage to follow your heart and intuition, they somehow already know what you truly want to become. Everything else is secondary.” – Steve Jobs</p>
<p>Life is a gift. Never forget to enjoy and bask in every moment you are in.</p>
</div>
<div class="dp20">
<p>“We are not human beings having a spiritual experience. We are spiritual beings having a human experience” – Pierre Teilhard de Chardin</p>
<p>Don’t go around saying the world owes you a living. The world owes you nothing. It was here first. – Mark Twain</p>
<p>“My life is my message.” – Gandhi</p>
<p>“Honesty is the first chapter in the book of wisdom.”</p>
</div>
</div>
</body>
</html>