-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (93 loc) · 2.89 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./assets/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Portfolio</title>
</head>
<header class="header" id="navigation">
<h1>Tolkien</h1>
<nav>
<ul>
<li>
<a href="#AboutMe">About Me</a>
</li>
<li>
<a href="#Work">Work</a>
</li>
<li>
<a href="#ContactMe">Contact Me</a>
</li>
<li>
<a href="#resume">Resume</a>
</li>
</ul>
</nav>
</header>
<section class="quote">
<h2>Not all those who wander are lost.</h2>
</section>
<main class="content">
<article id="para">
<p>
<strong>“He is not half through yet, and to what he will come in the end not even Elrond can foretell.
Not to evil, I think. He may become a glass filled with a clear light for eyes to see that can.”
</p>
<p>“Far above the Ephel Duath in the West the night-sky was still dim and pale.
There, peering among the cloud-wrack above a dark tor high up in the mountains, Sam saw a white star twinkle for a while.
The beauty of it smote his heart, as he looked up out of the forsaken land, and hope returned to him.
or like a shaft, clear and cold, the thought pierced him that in the end the Shadow was only a small and passing thing:
there was light and high beauty for ever beyond its reach.”</strong>
</p>
</article>
<h3>About Me</h3>
</main>
<article>
<h4 id = "left-header" class="aside">Work</h4>
<div class="images">
<section id="work-container">
<div id="large-image" class="grid-layout">
<h5>The One Ring</h5>
</div>
<div class="top">
<div id="books" class="grid-layout">
<h5>Books</h5>
</div>
<div id="hobbithole" class="grid-layout">
<h5>Bilbo Baggins</h5>
</div>
</div>
<div class="bottom">
<div id="map" class="grid-layout">
<h5>Middle Earth</h5>
</div>
<div id="yellowdoor" class="grid-layout">
<h5>The Shire</h5>
</div>
</div>
</section>
</div>
</article>
<footer>
<h6 class="footerTitle">Contact Me</h6>
<div class="footerMenu">
<div>
<a href="#AboutMe">555-867-5309</a>
</div>
<div>
<a href="#Work">email address here</a>
</div>
<div>
<a href="#ContactMe">GitHub</a>
</div>
<div>
<a href="#Resume">Twitter</a>
</div>
<div>
<a href="#Resume">Spotify</a>
</div>
</div>
</footer>
</body>
</html>