-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.37 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="styles/main.css">
<title>Portfolio</title>
</head>
<body>
<header>
<h1>David C. Sampson</h1>
</header>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
<main>
<h1>About</h1>
<p>
Hello! I'm David Sampson a Sophmore computer Science Major at Rose-Hulman Institute of Technology
</p>
<p>
I've been programming since I was in 8th grade and I have a passion for finding coding solutions to problems I find myself having, one example of this is when I got annoyed with solving polynomials by hand so I decided to write a program that would be able to solve them for me.
</p>
<p>
When I'm not coding I enjoy playing Dungeons and Dragons with my friends on the weekends.
</p>
</main>
<footer>
<p>
You can reach me at [email protected]
</p>
</footer>
</body>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/popper.js"></script>
<script src="scripts/bootstrap-material-design.js"></script>
<script>$("body").bootstrapMaterialDesign();</script>
<script src="scripts/main.js"></script>
</body>
</html>