-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
65 lines (65 loc) · 2.72 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
<!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">Ethan Yang</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>
<div class = "resume">
<section class = "section">
<h2 class = "section-title">Education</h2>
<div class="entry">
<h3 class="entry-title">Bachelor of Science in Computer Science</h3>
<p class="entry-info">California Polytechnic State University, San Luis Obispo | Expected Graduation May 2028
</p>
</div>
</section>
<section class = "section">
<h2 class = "section-title">Coursework</h2>
<ul class="course-list">
<li>Hack4Impact HTML, CSS, & Git Starter Pack</li>
<li>Fundamentals of Computer Science</li>
</ul>
</section>
<section class = "section">
<h2 class = "section-title">Skills</h2>
<ul class="skill-list">
<li>Semantic HTML5</li>
<li>CSS3</li>
<li>Git version control</li>
<li>Python3</li>
</ul>
</section>
<section class = "section">
<h2 class = "section-title">Projects</h2>
<div class="entry">
<h3 class="entry-title">Personal Website</h3>
<p class="entry-info">Designed and built a personal website using HTML and CSS</p>
<p class="entry-description">Implemented multiple pages using HTML and CSS. Focused on semantic HTML design. Used best practices for Git and Github.</p>
</div>
</section>
<section class = "section">
<h2 class = "section-title">Experience</h2>
<div class="entry">
<h3 class="entry-title">Hack4Impact Software Developer</h3>
<p class="entry-info">Hack4Impact | September 2024 - Present</p>
<p class="entry-description">Completed the Hack4Impact Starter Pack</p>
</div>
</section>
</div>
</main>
<footer class = "footer">
© 2024 Ethan Yang Personal Website | All Rights Reserved
</footer>
</body>