-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperience.html
39 lines (36 loc) · 938 Bytes
/
experience.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
<!DOCTYPE html>
<html>
<head>
<title>Work Experience</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="projects.html">Projects</a>
</li>
<li>
<a href="skills.html">Skills</a>
</li>
<li>
<a class="active" href="experience.html">Experience</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<h2>Work Experience:</h2>
<hr>
<ul>
<li>CS 224 TA: Jan 2018 - present</li>
<li>CS 142 TA: Sep 2017 - present</li>
<li>Deliver Driver/Sandwich Maker: May 2015 - Jul 2015, Jul 2017 - Sep 2017</li>
<li>Pest Control Salesman: Jun 2014 - Aug 2014</li>
</ul>
</body>
</html>