-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.52 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Paul Phelps</title>
<link rel="stylesheet" href="home.css">
</head>
<body>
<div id="canvaswrapper">
<div id="titlebox">
<p id="title" onclick="location.href='/index.html';" style="cursor: pointer"><em>P</em>aul <br>
<em>P</em>helps <br><em>P</em>ortfolio</p>
</div>
<nav id="linkbar">
<ul id="links">
<li><a href="/projects.html">Projects</a></li>
<li><a href="">Volunteering</a></li>
<li><a href="/sideprojects.html">Side Projects</a></li>
<li><a href="/about.html">About Me</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div id="thumbnailwrapper">
<div id="thumbnail">“Too bad! Same old story! Once you’ve finished building your house
you notice you’ve accidentally learned something that you really
should have known—before you started.”
—Friedrich Nietzsche, Beyond Good and Evil
</div>
</div>
<div id="homewrapper">
<div id="hometext">Software Engineer<br> Web Developer</div>
</div>
<div id="mainbody"></div>
</div>
<script src="jquery.js"></script>
<script src="home.js"></script>
</body>
</html>