-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
51 lines (45 loc) · 1.79 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Noah Sapp's Website">
<meta name="author" content="Noah Sapp">
<title>Noah Sapp</title>
<link rel="stylesheet" href="stylesheet.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Noah Sapp</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li class="current"><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<section id="main">
<div class="container">
<article id="main-col">
<h1 class="page-title">About</h1>
<h4>Academics</h4>
<p>I am an undergraduate student at the University of Richmond, pursuing a B.S. in Mathematics and Computer Science. Mathematically, I'm interested in cryptograhpy, abstract algebra, and
number theory. In the field of computer science, my interests lie in machine learning, reverse engineering, and virtual and augmented reality development.</p>
<h4>Personal Life</h4>
<p>In my personal life, I am a musician, an athlete, and a reader. I play classical saxophone, piano, and despise most jazz with a passion. I produce music for fun, but never publish any of
it. I currently play ultimate frisbee at Richmond, and am one of the founders of DeLand High School's ultimate team, Flightline. </p>
</article>
<aside id="sidebar">
<div class="dark">
<img src="tuxpic.jpg" height="430" width="430">
</div>
</aside>
</div>
</section>
</body>
</html>