-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage9.html
More file actions
80 lines (80 loc) · 2.98 KB
/
page9.html
File metadata and controls
80 lines (80 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page 9</title>
<link rel="shortcut icon" href="favicon.ico" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="jq5.js"></script>
<style>
body {
background-color: black;
}
img:hover {
cursor: grab;
}
.formatted {
white-space: pre;
font-family: monospace;
margin: 0 auto;
width: 400px;
background-color: lightgray;
}
.container {
width: 100%;
text-align: center;
}
.formatted a {
color: black;
text-decoration: none;
}
.formatted a:hover {
cursor: link;
}
</style>
</head>
<body>
<div class="container">
<img id="skull" src="skull.gif" />
</div>
<!--prettier-ignore-->
<div class="formatted" id="container">
<span id="black">“To be, or not to be: that is the question:
Whether 'tis nobler in the mind to suffer
The slings and arrows of outrageous fortune,
Or to take</span> arms <span id="black2">against a sea of troubles,
And by opposing end them? To die: to sleep;
No more; and by a sleep to say we end
The heart-ache and the thousand natural shocks
That</span> flesh <span id="black3">is heir to, 'tis a consummation
Devoutly to be wish'd. To die, to sleep;
To sleep: perchance to dream: ay, there's the rub;
For in that sleep of death what dreams may come
When we have shuffled off this</span> mortal <span id="black4">coil,
Must give us pause: there's the respect
That makes calamity of so long life;
For who would bear the whips and scorns of time,
The oppressor's wrong, the proud man's contumely,
The pangs of despised love, the law's delay,
The insolence of office and the spurns
That patient merit of the unworthy takes,
When he himself might his quietus make
With a bare bodkin? who would fardels bear,
To grunt and sweat under a weary</span> life <span id="black5">,
But that the dread of something after death,
The undiscover'd country from whose bourn
No traveller returns, puzzles the will
And makes us rather bear those ills we have
Than fly to others that we know not of?
Thus</span><a id="link" href="page10.html"> conscience </a><span id="black6">does make cowards of us all;
And thus the native hue of resolution
Is sicklied o'er with the pale cast of thought,
And enterprises of great pith and moment
With this regard their currents turn awry,
And lose the name of action.--Soft you now!
The fair Ophelia! Nymph, in thy orisons
Be all my sins remember'd!”</span>
<!--Shakespeare, William. Hamlet. Edited by George Richard Hibbard, Oxford UP, 2008-->
</div>
</body>
</html>