-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
62 lines (57 loc) · 2.57 KB
/
about.html
File metadata and controls
62 lines (57 loc) · 2.57 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
<!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="about.css">
</head>
<body>
<div id="mainwrapper">
<div id="canvaswrapper">
<div id="navbar">
<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">“When you don't create things, you become defined by your tastes rather than
ability.
your tastes only narrow & exclude people. so create.”
― Why The Lucky Stiff
</div>
</div>
</div>
<div id="content">
<div id="titlewrapper">
<div id="pagetitle"></div>
</div>
<div id="mainbody">
<p id="aboutcontent">
<img id="portrait" src="images/Profile.jpeg" alt="A tasteful headshot. Very handsome.">
"I've been working on web programming since June of 2019, namely Javascript, HTML5, and CSS. I
have a good deal of experience with these, as well as working knowledge of various frameworks
and libraries, like Express and JQuery. I've recently started working with React in order to
make
a more streamlined experience. When I'm not studying, I'm training for the next Spartan Race,
playing tabletop RPGs with my friends, or making dinner for the people I love"
</p>
</div>
</div>
</div>
</div>
<script src="jquery.js"></script>
<script src="about.js"></script>
</body>
</html>