-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperience.html
52 lines (52 loc) · 1.31 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Simon Jam</title>
<link rel="stylesheet" type="text/css" href="/css/experience.css">
</head>
<body>
<nav>
<div class="nav-logo">
<h1>Simon Jam</h1>
</div>
<div class="nav-links">
<a href="index.html">About</a>
<a href="projects.html">Projects</a>
<a href="experience.html"><strong>Experience</strong></a>
<a href="contact.html">Contact</a>
<a href="schedule.html">Schedule</a>
</div>
</nav>
<main class="grid-container">
<div class="grid-item">
<h1>
Work Experience
</h1>
<h2>
Placeholder Company
</h2>
<h3>
Date1-Date2
</h3>
<p>
<ul>
<li>Job Responsibility 1</li>
<li>Job Responsibility 2</li>
</ul>
</p>
</div>
<div class="grid-item">
<h1>
Education
</h1>
<h2>
California Baptist University
</h2>
<h3>
September 2020-May 2024 <br>
BSSE Software Engineering
</h3>
</div>
</main>
</body>
</html>