-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
78 lines (73 loc) · 4.01 KB
/
Copy pathresume.html
File metadata and controls
78 lines (73 loc) · 4.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Resume</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="style.css" rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
</head>
<body>
<h2 class="header">Alex Corey</h2>
<nav class="nav__bar">
<a href="index.html" class="nav__bar__index nav__bar__item link">Home</a>
<a href="portfolio.html" class="nav__bar__portfolio nav__bar__item link">Portfolio</a>
<a href="resume.html" class="nav__bar__resume nav__bar__item link">Resume</a>
</nav>
<div class="resume">
<div>
<p class="resume__intro">A front end Software Developer looking to join a fast paced, close knit team that is developing positive solutions to the world's problems.</p>
</div>
<h3 class="resume__header">Work Experience</h3>
<ul class="resume__box">
<li class="resume__chunk">
<h4 class="resume__subheader">Assistant Principal</h4>
<p>2012-2018</p>
<p>I worked at all grade levels. Worked with students, parents, teachers and community members. Looked into
the future to see potential problems. Found solutions to problems, sought help when necessary</p>
</li>
<li class="resume__chunk">
<h4 class="resume__subheader">Teacher</h4>
<p>2007-2012</p>
<p>I taught high school social studies. I planned lessons, addressed issues with studets parents, administrators.
Left this profession because it sucked the soul out of me. </p>
</li>
<li class="resume__chunk">
<h4 class="resume__subheader">Camp Kanata Leadership Staff</h4>
<p>2004-2010</p>
<p>At Camp Kanata I supervised up to 50 staff members and over 200 campers. I was charged with organizing activities for each camper each day, maintaining a safe and fun environment for them, and communicating with parents, staff, and outside board members.</p>
</li>
</ul>
<div class="education__container">
<h3 class="resume__header">Education and Training</h3>
<ul class="resume__box">
<li class="resume__chunk">
<h4 class="resume__subheader">UNCW</h4>
<P>2010-2012</P>
<p>I got my Master of School Administration and Cuurriculum and Instructional Supervision. I had to get
this degree to become an Assistant Principal. I'm proud of it.</p>
</li>
<li class="resume__chunk">
<h4 class="resume__subheader">Elon University</h4>
<P>2003-2007</P>
<p>I studied Social Studies Education. This was a good experience, but I wish I had taken a year off before
going to college to consider what I wanted to do for a living.</p>
</li>
<li class="resume__chunk">
<h4 class="resume__subheader">Momentum Learn</h4>
<P>2018</P>
<p>I studied full front end/back end softward development. I created a lot of products including come of
the items that can be found on the Projects page of this site.</p>
</li>
</ul>
</div>
</div>
<footer class="social__media">
<a href="https://www.facebook.com/alex.corey.5815" class="fa fa-facebook icon" target="_blank"></a>
<a href="https://twitter.com/CoreyAS17" class="fa fa-twitter icon" target="_blank"></a>
<a href="https://www.linkedin.com/in/alex-corey-a06b40131/" class="fa fa-linkedin icon" target="_blank"></a>
</footer>
</body>
</html>