-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
34 lines (30 loc) · 1.01 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Calistoga&family=IBM+Plex+Sans&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1><a href="index.html">HotDog</a></h1>
<nav>
<ul>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/gallery.html">Gallery</a></li>
<li><a href="/work.html">Work</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
</section>
<footer></footer>
<script src="script.js"></script>
</body>
</html>