-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
87 lines (85 loc) · 4.25 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title> Resume </title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo"> <a href="index.html"> Elaina Lyons </a> </h1>
<ul class="nav-list">
<li> <a href="index.html"> Home </a></li>
<li> <a href="blog.html"> Blog </a></li>
<li> <a href="contact.html"> Contact</a></li>
<li> <a href="portfolio.html"> Portfolio</a></li>
<li> <a href="resume.html"> Resume </a></li>
</ul>
</nav>
<main>
<h1 class="page-title" download> Resume </h1>
<a class="resume-download" href="Elaina Lyons College Resume.pdf"> Download Resume</a>
<div class="resume">
<section class="section">
<h2 class="section-title">Education</h2>
<div class="entry">
<h3 class="entry-title"> <strong> Bachelor of Science in Computer Science</strong></h3>
<p class="entry-info"> California Polytechnic State University, San Luis Obispo | Expected Graduation May 2027</p>
</div>
</section>
<br>
<section class="section">
<h2 class="section-title">Coursework</h2>
<ul class="course-list">
<li> Hack4Impact HTML, CSS, and GIT Starter Pack</li>
<li> Introduction to Computing</li>
<li> AP Computer Science Principles (Northfield High School, 5 on AP Test) </li>
<li> IB HL Computer Science (Northfield High School, 6 on IB Exam) </li>
<li> CE-CNG 101 Networking Fundamentals (Community College of Denver) </li>
<li> CE-CIS 115 Intro to CIS (Community College of Denver) </li>
</ul>
</section>
<br>
<section class="section">
<h2 class="section-title">Skills</h2>
<ul class="skill-list">
<li> HTML</li>
<li> CSS</li>
<li> JavaSciprt</li>
<li> Java</li>
</ul>
</section>
<br>
<section class="section">
<h2 class="section-title">Projects</h2>
<div class="entry">
<h3 class="entry-title"> Personal Website </h3>
<ul>
<li>
<p class="entry-info"> Designed and built a personal website using HTML and CSS. Implemented multiple pages, focusing on semantic HTML design</p>
</li>
</ul>
<h3 class="entry-title"> Life Planner</h3>
<ul>
<li> <p class="entry-info"> Used Java to create an application allwoing users to log academic assignments and track fitness activity. </p> </li>
<li> <p>Created an intuitive UI dividing academic, athletic, and To-Do list screens. </p> </li>
<li> <p> Re-created a version of the game "Wordle" as a reward for fulfilling To-Do Lists.</p></li>
</ul>
</div>
</section>
<br>
<section class="section">
<h2 class="section-title">Experience</h2>
<div class="entry">
<h3 class="entry-title"> Cashier/Front-of-House </h3>
<ul> <li>
<p class="entry-info"> Demonstrated excellent teamwork, customer service, organization, and communication skills working at
Rollin' Smoke BBQ in Denver, Colorado. 10-15 hours/week from roughly March 2021 - August 2021 </p>
</li></ul>
</div>
</section>
</div>
</main>
<br>
<footer class="footer"> © 2023 Elaina's Website | All Rights Reserved </footer>
</body>
</html>