-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (100 loc) · 3.66 KB
/
index.html
File metadata and controls
138 lines (100 loc) · 3.66 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="styles/portfolioStyle.css">
<link rel="icon" type="image/jpg" href="imgs/emilyIcon.jpg">
</head>
<!--Code author Emily Menken-->
<body>
<h1>Emily Menken</h1>
<div id="ContactAccounts">
<h3>Contact me at:</h3>
<p>Email: menken.emily@student.greenriver.edu</p>
<p>Phone: 206-922-9218</p>
<h3>Accounts:</h3>
<p>LinkedIn:<a href="https://www.linkedin.com/in/emily-menken" target="_blank">linkedin.com/in/emily-menken </a></p>
<p>GitHub:<a href="https://github.com/EmilyMenken" target="_blank">github.com/EmilyMenken</a></p>
</div>
<div id="imgOfMe">
<img src="imgs/emilyImg.jpg" alt="Picture of me, Emily Menken">
</div>
<div id="Summary">
<h2>Summary</h2>
<p>Former retail associate with customer service and group experience turned software development student seeking a summer internship.</p>
</div>
<div id="SkillList">
<h2>Skills</h2>
<ul>
<li>
Languages: Java, JavaScript
</li>
<li>
Web: HTML, CSS
</li>
<li>
Ready to learn
</li>
<li>
Works well with others
</li>
<li>
On time
</li>
</ul>
</div>
<h2>Education</h2>
<div id="Education">
<h3>Green River</h3>
<ul>
<li>
Software Development Bachelor's Degree, expected finish in June 2026, GPA N/A
</li>
<li>
General Studies Associate's Degree, finished in June 2023, GPA 3.72
</li>
</ul>
<h3>Tahoma Senior High School</h3>
<ul>
<li>
High School Diploma, finished in June 2023, GPA 3.89
</li>
</ul>
</div>
<h2>Experience</h2>
<div id="Experience">
<h3>PetSmart</h3>
<p>August 2023 - Present</p>
<ul>
<li>
Works as a cashier and takes care of animals.
</li>
<li>
Uses computer programs to report on animal health and supply counts.
</li>
</ul>
<h3>Chapel Wood Baptist Church</h3>
<p>2021 - 2023</p>
<ul>
<li>
Ran a computer based check in system for checking in children.
</li>
<li>
Took care of children alongside a group of other teachers.
</li>
</ul>
<h3>McDonald's</h3>
<p>July 2022 - September 2022</p>
<ul>
<li>
Worked as a cashier.
</li>
<li>
Worked with others to finish tasks and satisfy customers.
</li>
</ul>
</div>
</body>
</html>