This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
forked from hack4impact-calpoly/bootcamp-project-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
63 lines (60 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<title>My website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class = "navbar">
<h1 class = "page-title"><a href = "resume.html">my resume</a></h1>
<a href = "resume.pdf" download>Download Resume</a>
<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 ="section-title">my resume</h1>
<div class="resume">
<section class = "section"><h2 class = "section-title">Education</h2>
<div class = 'entry'>
<h3 class="entry-title">Cal Poly SLO</h3>
<p class="entry-info">B.S. Computer Science</p>
</div>
</section>
<section class = "section"><h2 class = "section-title">Projects</h2>
<div class = 'entry'>
<h3 class="entry-title">SQL Data Transfer System</h3>
<p class="entry-info">Power App to power automate to SQL</p>
</div>
</section>
<section class = "section"><h2 class = "section-title">Experience</h2>
<div class = 'entry'>
<h3 class="entry-title">IT Intern</h3>
<p class="entry-info">SLO County IT department</p>
</div>
</section>
<section class = "section"><h2 class = "section-title">Coursework</h2>
<ul class="coursework-list">
<li>CSC 357</li>
<li>CSC 248</li>
<li>CSC 225</li>
<li>CSC 203</li>
<li>CSC 202</li>
<li>CSC 101</li>
</ul>
</section>
<section class = "section"><h2 class = "section-title">Skills</h2>
<ul class="skills-list">
<li>Java</li>
<li>Python</li>
</ul>
</section>
</div>
</main>
<footer class = "footer">© 2023 <Ethan's Website> | All Rights Reserved</footer>
</body>
</html>