-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
94 lines (94 loc) · 3.29 KB
/
resume.html
File metadata and controls
94 lines (94 loc) · 3.29 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
<!DOCTYPE html>
<html>
<head>
Personal Website
<title>My Website</title>
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">personal website</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="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title"></h1>
<a href="resume.pdf" download> Download Resume </a>
<div class="resume">
<section>
<h2 class="Education"><p>Education</p></h2>
<div class="entry">
<h3 class="entry-title"></h3>
<p class="entry-info">
I am a first year computer science major at Cal Poly. I attended
Saint Francis High School from 08/2019 until 05/2023.
</p>
</div>
</section>
<section>
<h2 class="Projects"><p>Projects</p></h2>
<div class="entry">
<h3 class="entry-title"></h3>
<p class="entry-info"></p>
<p class="entry-description"></p>
<ul class="project-list">
<li>Aprender Python Website</li>
<li>Lancer Analytics Club, Offensive Formations Project</li>
<li>Return to Running Website</li>
</ul>
</div>
</section>
<section>
<h2 class="Skills"><p>Skills</p></h2>
<div class="entry">
<h3 class="entry-title"></h3>
<p class="entry-info"></p>
<ul class="skill-list">
<li>Programming Languages: Java, Python, R</li>
<li>Software Tools: Jupyter Notebook, Microsoft Excel, Git</li>
</ul>
</div>
</section>
<section>
<h2 class="Experience"><p>Experience</p></h2>
<div class="entry">
<h3 class="entry-title"></h3>
<p class="entry-info">
I worked as a math instructor at Mathnasium from 08/21 until
09/23.
</p>
<p class="entry-description"></p>
<ul class="experience-list">
<li>Demonstrated sharing my love for math with my students</li>
<li>
Personalizing instruction by gauging student understanding to
satisfy their learning needs
</li>
</ul>
</div>
</section>
<section>
<h2 class="Coursework"><p>Coursework</p></h2>
<div class="entry">
<h3 class="entry-title"></h3>
<p class="entry-info"></p>
<ul class="course-list">
<li>AP Computer Science Principles</li>
<li>AP Computer Science A</li>
<li>Linear Algebra and Applications (UCLA Math 33A)</li>
<li>Data Structures (in progress)</li>
<li>Introduction to Statistical Reasoning</li>
<li>Calculus 3 (in progress)</li>
<li>Ordinary Differential Equations</li>
</ul>
</div>
</section>
</div>
</main>
<footer class="footer">© 2023 My Website | All Rights Reserved</footer>
</body>
</html>