forked from hack4impact-calpoly/bootcamp-project-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
100 lines (100 loc) · 4.32 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
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<title>
Taiki's Resume
</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Taiki Jeffers</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">
<a href="Resume.pdf" download>Download Resume</a>
</h1>
Hello World! This is my resume.
<div class="resume">
<section class="section">
<h2 class="section-title">
Education
<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 June 2028</p>
</div>
</h2>
</section>
<section class="section">
<h2 class="section-title">
Experience
<div class="entry">
<h3 class="entry-title">Computers 4 People Volunteer</h3>
<p class="entry-info">Hoboken, NJ | August 2022 - September 2024</p>
<p class="entry-description">
Volunteered at a nonprofit that donates computers to low-income
households; refurbished/repaired 100+ laptops and translated brochures
to Japanese.
</p>
</div>
</h2>
</section>
<section class="section">
<h2 class="section-title">Skills</h2>
<ul>Skills
<li>Semantic HTML</li>
<li>CSS3</li>
<li>Git Version Control</li>
<li>Python</li>
<li>Java</li>
<li>TypeScript</li>
</ul>
</section>
<section class="section">
<h2 class="section-title">
Projects
<div class="entry">
<h3 class="entry-title"><a href="index.html">Personal Website</a></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</p>
<p class="entry-description"> - Focused on semantic HTML design</p>
<p class="entry-description"> - Used best practices for Git and GitHub</p>
</div>
</h2>
</section>
<section class="section">
<h2 class="section-title">Coursework</h2>
<ul>Coursework
<li>Hack4Impact HTML, CSS, and Git Starter Pack</li>
<li>Fundamentals of Computer Science</li>
<li>AP Computer Science A</li>
</ul>
</section>
<section class="section">
<h2 class="section-title">Activities</h2>
</section>
<section class="section">
<h2 class="section-title">Awards</h2>
</section>
<section class="section">
<h2 class="section-title">Interests</h2>
</section>
<section class="section">
<h2 class="section-title">References</h2>
</section>
</div>
</main>
<footer class="footer">
© 2024 Taiki's Personal Website | All Rights Reserved
</footer>
</body>
</html>