-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (74 loc) · 2.73 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
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<link rel="icon" type="image/jpg" href="poetry-icon-6.jpg">
<style>
pre {
font-family: 'Esteban', serif;
font-size: 18px;
line-height: 1.6;
}
</style>
<title>My Favorite Reads</title>
</head>
<body>
<header>
<h1>Welcome to My Poetry Collection</h1>
<h2>1. From Emily Dickinson’s <em>The Brain—is wider than the Sky—</em></h2>
</header>
<main>
<figure>
<img src="emilydickinson01.jpg" alt="Emily Elizabeth Dickinson"
width="300">
<figcaption>
<p> Emily Elizabeth Dickinson (<time datetime="1830-12-10">1830</time> – <time
datetime="1886-05-15">1886</time>)</p>
</figcaption>
</figure>
<figure>
<img src="the-emily-dickinson-house.jpeg"
alt="Emily Elizabeth Dickinson' House" width="300">
<figcaption>
<p>Emily's house, now musemum</p>
</figcaption>
</figure>
<figure>
<img src="emily-dickinson-collection.jpg"
alt="Emily Elizabeth Dickinson's Poetry Collection" width="300">
<figcaption>
<p>Collected Works</p>
</figcaption>
</figure>
<pre>
THE BRAIN
The Brain—is wider than the Sky—
For—put them side by side—
The one the other will contain
With ease—and you—beside—
The Brain is deeper than the sea—
For—hold them—Blue to Blue—
The one the other will absorb—
As sponges—Buckets—do—
The Brain is just the weight of God—
For—Heft them—Pound for Pound—
And they will differ—if they do—
As Syllable from Sound—
Emily Dickinson, c. 1862
</pre>
</main>
<footer>
<p>Read more at:
<ul>
<li><a href="https://en.wikipedia.org/wiki/List_of_Emily_Dickinson_poems" target="_blank">List of her
works</a>.</li>
<li><a href="https://www.britannica.com/biography/Emily-Dickinson" target="_blank">Her biography</a>.</li>
<li><a href="https://www.litcharts.com/poetry/emily-dickinson/the-brain-is-wider-than-the-sky"
target="_blank">An in-depth review on this poem</a>.</li>
</ul>
</p>
</footer>
</body>
</html>