forked from ga-wdi-exercises/js-dom-quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.16 KB
/
index.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 lang="en">
<head>
<meta charset="UTF-8">
<title>Quotes</title>
</head>
<body>
<header>
<h1>Quotes</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="subject simplicity">
<h2>On Simplicity</h2>
<article class="quote">
<blockquote>
<p>There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies and the other way is to make it so complicated that there are no obvious deficiencies.</p>
<cite>-C. A. R. Hoare</cite>
</blockquote>
</article>
<article class="quote">
<blockquote>
<p>Life is really simple, but we insist on making it complicated.</p>
<cite>-Confucius</cite>
</blockquote>
</article>
</section>
<section class="subject life">
<h2>Quotes About Life</h2>
<article class="quote">
<blockquote>
<p>All you need in this life is ignorance and confidence, and then success is sure.</p>
<cite>—Mark Twain</cite>
</blockquote>
</article>
<article class="quote">
<blockquote id='mark-twain-second'>
<p>The best way to cheer yourself up is to try to cheer somebody else up.</p>
<cite>-Mark Twain</cite>
</blockquote>
</article>
</section>
<section class="subject motivation">
<h2>Quotes About Motivation</h2>
<article class="quote">
<blockquote>
<p>Knowing is not enough; we must apply. Willing is not enough; we must do.</p>
<cite>-Johann Wolfgang von Goethe</cite>
</blockquote>
</article>
<article class="quote">
<blockquote>
<p>The will to win, the desire to succeed, the urge to reach your full potential... these are the keys that will unlock the door to personal excellence.</p>
<cite>-Confucius</cite>
</blockquote>
</article>
</section>
</main>
<footer>
<p>quotes from brainyquote.com</p>
</footer>
</body>
</html>