-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
51 lines (48 loc) · 1.69 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Resume: Ben Roberts</title>
<link rel="stylesheet" href="styles/normalize.css" />
<link rel="stylesheet" href="styles/main.css" />
</head>
<body id="resume">
<header>
<h1>Ben Roberts</h1>
</header>
<nav>
<ul>
<li><button type="button" id="slashDirection">Forward Slash?</button></li>
<li><a class="navigate" href="index.html">About</a></li>
<li><a class="navigate" href="portfolio.html">Portfolio</a></li>
<li><a class="navigate" href="resume.html">Resume</a></li>
</ul>
</nav>
<main id="resume">
<h1>Resume</h1>
<h2>Objective</h2>
<ul><li><p>Internship or Co-op for Summer 2022</p></li></ul>
<h2>Education</h2>
<ul>
<li><h3>Rose Hulman Institute of Technology, Terre Haute, IN</h3></li>
<li>Computer Science</li>
<li>Expected Graduation: May 2023</li>
<li>GPA: 2.71</li>
<li><em>Related Courses: </em>Introduction to Web Programming, Operating Systems, Data Structures and Algorithm Analysis</li>
</ul>
<h2>Computer Skills</h2>
<ul>
<li>Languages: Python, Java, Javascript, Html, CSS, C</li>
</ul>
<h2>Previous Work Experience: Delta Faucet Company</h2>
<ul>
<li>Factory Worker.</li>
</ul>
</main>
<footer>
<p id="email">email: [email protected]<p\>
</footer>
<script src="scripts/main.js"></script>
</body>
</html>