-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
37 lines (31 loc) · 872 Bytes
/
about.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">
<link rel="stylesheet" href="style/index.css">
<title>About</title>
</head>
<body>
<!-- Navigation Bar -->
<header>
<nav>
<button><a href="index.html">Home</a></button>
<button><a href="about.html">About</a></button>
<button><a href="projects.html">Projects</a></button>
<button><a href="contact.html">Contact</a></button>
</nav>
</header>
<!-- About Section -->
<section class="about">
<h2>About Me</h2>
<p>Replace this text with information about yourself.</p>
</section>
<!-- Footer -->
<footer>
<a href="#">Instagram</a>
<a href="#">LinkedIn</a>
<a href="#">Twitter</a>
</footer>
</body>
</html>