-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexperience.html
More file actions
36 lines (32 loc) · 1.01 KB
/
Copy pathexperience.html
File metadata and controls
36 lines (32 loc) · 1.01 KB
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
<!DOCTYPE html>
<!-- Create your homepage structure here! -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My Personal Website</title>
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="#" class="disabled">Experience</a>
<a href="contact.html">Contact</a>
</div>
<h2>Experience</h2>
<button class="accordion">Experience 1</button>
<div class="panel">
"Lorem ipsum dolor sit amet, consectetur adipisicing elit"
</div>
<button class="accordion">Experience 2</button>
<div class="panel">
"Lorem ipsum dolor sit amet, consectetur adipisicing elit"
</div>
<button class="accordion">Experience 2</button>
<div class="panel">
"Lorem ipsum dolor sit amet, consectetur adipisicing elit"
</div>
<script src="index.js"></script>
</body>
</html>