-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
36 lines (31 loc) · 856 Bytes
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Muhammad Iqbal Habibie Personal Website</title>
</head>
<body>
<nav>
<a href="index.html">Home</a> |
<a href="CV.pdf">Download CV</a> |
<a href="contact.html">Contact</a> |
<a href="about.html">About me</a>
<a href="data.html">Data</a>
<a href="project.html">Project</a>
</nav>
<hr />
<div class="dropdown">
<button class="dropbtn">Dropdown</button>
<div class="dropdown-content">
<a href="/Project/Project1/index.html">Project1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<hr>
<footer style="text-align: center;">
<p>Copyright © 2020 Muhammad Iqbal Habibie.</p>
</footer>
</body>
</html>