-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.php
67 lines (44 loc) · 2.42 KB
/
quotes.php
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Favourite Quotes | Marina Samuel</title>
<link rel="stylesheet" type="text/css" href="web.css" />
<script type="text/javascript" src="analytics.js"></script>
</head>
<body>
<div id="container">
<?php require("layout.php"); ?>
<div id="content">
<h2>Favourite Quotes</h2>
<h3>I have gathered a posie of other men’s flowers, and nothing but the thread that binds them is mine own.</h3>
<p id="main-author">- John Bartlett</p>
<hr id="line">
<p class="quote">A true sign of intelligence is not knowledge, but imagination.</p>
<p class="author">- Albert Einstein</p>
<p class="quote">Brick walls are there for people who don't want it badly enough.</p>
<p class="author">- Randy Pausch</p>
<p class="quote">Be nice to nerds. Chances are you'll end up working for one.</p>
<p class="author">- Bill Gates</p>
<p class="quote">Innovation distinguishes between a leader and a follower.</p>
<p class="author">- Steve Jobs</p>
<p class="quote">Don’t let your education get in the way of your learning.</p>
<p class="author">- Mark Twain</p>
<p class="quote">To the world you may be one person, but to one person you may be the world.</p>
<p class="author">- Ghandi</p>
<p class="quote">Your most unhappy customers are your greatest source of learning.</p>
<p class="author">- Bill Gates</p>
<p class="quote">A pessimist sees the difficulty in every opportunity; an optimist sees the opportunity in every difficulty.</p>
<p class="author"> - Sir Winston Churchill</p>
<p class="quote">The best way to predict the future is to invent it.</p>
<p class="author">- Alan Kay</p>
<p class="quote">After I'm dead I'd rather have people ask why I have no monument than why I have one.</p>
<p class="author">- Cato the Elder</p>
<p class="quote">The significant problems we face cannot be solved at the same level of thinking we were at when we created them.</p>
<p class="author">- Albert Einstein</p>
<p class="quote">Copy from one, it's plagiarism; copy from two, it's research.</p>
<p class="author">- Wilson Mizner</p>
</div>
<div class="clearfix"></div>
</div>
</body>
</html>