-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
66 lines (61 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> Nick's Resume </title>
<meta charset="UTF-8" />
<meta name="author" content="My Name" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="resume.css" />
<script type="text/javascript">
window.addEventListener('DOMContentLoaded', alert('Go away!'), false);
</script>
</head>
<body>
<header>
<h1> Nick Negich </h1>
<p> 150 Finoli Drive - Greensburg, PA, 15601 - (724) 555-0150 - nsn12 at pitt.edu </p>
<hr> </hr>
<hr> </hr>
</header>
<section id="education">
<h2> EDUCATION: </h2>
<p> I am currently attending the University of Pittsburgh at Greensburg</p>
<ul>
<li> I graduated Hempfield High School in May of 2018. </li>
<li> I am taking an Intro to Java class, as well as a Website design class in my first semester of college. </li>
<li> I am a freshman with the intended major of Computer Science. </li>
<li> I am also currently taking a Psychology class, as well as Composition 2.</li>
</ul>
</section>
<hr> </hr>
<section id="workExperience">
<h3> WORK EXPERIENCE: </h3>
<h4> PT's Pizza Palace: </h4>
<ul>
<li> This was my first job. </li>
<li> I worked here from June of 2017 to July of 2018. </li>
<li> I worked as a pizza delivery driver for a year. </li>
<li> I also worked in the kitchen. </li>
<li> I received a lot of experience with customers. </li>
</ul>
<hr> </hr>
<h5> UPS: </h5>
<ul>
<li> I started here in July of 2018 and I am still currently employed here. </li>
<li> I am a part of the Union. </li>
<li> It is very hard work and requires good work ethic. </li>
<li> There is much teamwork involved. </li>
</ul>
</section>
<hr> </hr>
<section id="other">
<h6> OTHER IMPORTANT EXPERIENCES: </h6>
<ul>
<li> I played ice hockey for 12 years up until my junior year of high school</li>
<li> I learned discipline and team skills. </li>
<li> I played lacrosse at the ages 11-13. </li>
</ul>
</section>
<hr> </hr>
</body> <!-- nsn 2018-11-9: Added id's to each section to link on my index html -->
</html>