-
Notifications
You must be signed in to change notification settings - Fork 138
/
index.html
73 lines (73 loc) · 3.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sonnet: to Science - The Mini Site</title>
<meta name="description" content="The advanced markup and page layout assignment.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Sonnet: to Science</h1>
<nav><!-- TODO: Add proper hrefs to links. -->
<ul class="top-nav"><!-- TODO: Make this list be a horizontal navigation -->
<li><a href="" class="active">Home</a></li>
<li><a href="">About Poe</a></li>
<li><a href="">Interpretation</a></li>
</ul>
</nav>
</header>
<aside id="sidebar"><!-- TODO: Make sidebar float right. -->
<h2>Did you know?</h2>
<p>
Poe is often credited with being an early pioneer of Science
Fiction since he published "The Balloon-Hoax" in 1844, and he is
also credited with inventing the Mystery/Detective story genre
with the first detective story (“The Murders in the Rue
Morgue” – 1841).
</p>
<h2>Share This!</h2>
<ul>
<li><a class="twitter" href="http://twitter.com">Twitter</a></li>
<li><a class="facebook" href="http://facebook.com">Facebook</a></li>
<li><a class="pinterest" href="http://pinterest.com">Pinterest</a></li>
</ul>
</aside>
<section id="content">
<ul class="poem"><!-- TODO: Remove bullets and style poem -->
<li>Science! true daughter of Old Time thou art!</li>
<li>Who alterest all things with thy peering eyes.</li>
<li>Why preyest thou thus upon the poet's heart,</li>
<li>Vulture, whose wings are dull realities?</li>
<li>How should he love thee? or how deem thee wise?</li>
<li>Who wouldst not leave him in his wandering</li>
<li>To seek for treasure in the jeweled skies,</li>
<li>Albeit he soared with an undaunted wing?</li>
<li>Hast thou not dragged Diana from her car?</li>
<li>And driven the Hamadryad from the wood</li>
<li>To seek a shelter in some happier star?</li>
<li>Hast thou not torn the Naiad from her flood,</li>
<li>The Elfin from the green grass, and from me</li>
<li>The summer dream beneath the tamarind tree?</li>
</ul>
</section>
<footer>
<nav><!-- TODO: Add proper hrefs to links. -->
<ul class="bottom-nav"><!-- TODO: Make this list be a horizontal navigation -->
<li><a href="" class="active">Home</a></li>
<li><a href="">About Poe</a></li>
<li><a href="">Interpretation</a></li>
</ul>
</nav>
<p>©2015 Jane Student</p>
<p class="smalltext">
<a href="http://www.public-domain-poetry.com/edgar-allan-poe/sonnet-to-science-1747">
Sonnet: to Science
</a>
text is by Edgar Allen Poe, and provided courtesy
Public-Domain-Poetry.com.
</p>
</footer>
</body>
</html>