-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.html
44 lines (41 loc) · 945 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
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>CV - Experience</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.nav {
background-color: #333;
color: white;
padding: 10px;
}
.nav a {
color: white;
text-decoration: none;
margin-right: 10px;
}
.content {
padding: 20px;
}
</style>
</head>
<body>
<div class="nav">
<a href="index.html">Home</a>
<a href="education.html">Education</a>
<a href="experience.html">Experience</a>
</div>
<div class="content">
<h1>Experience</h1>
<ul>
<!-- Add your experience details here. Example: -->
<li>Software Developer at ABC Corp.</li>
</ul>
</div>
</body>
</html>