-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbio.html
37 lines (37 loc) · 1.05 KB
/
bio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bio - [Your Name]</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="bio.html" aria-current="page">Bio</a>
</li>
<li>
<a href="experience.html">Experience</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
</ul>
</nav>
</header>
<main>
<h1>Bio</h1>
<!-- Your bio page is a place for people to get to know you. You should include your interests, things you are good at, and in general you should pull back enough of the curtain into your life to interest a potential employer in you as a person. -->
</main>
<footer>
<p>Copyright © 2024 [Your Name]</p>
</footer>
<script src="script.js"></script>
</body>
</html>