-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
28 lines (25 loc) · 885 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-logo.png">
<link rel="stylesheet" href="./styles/navbar.css">
</head>
<body>
<header>
<div class="header-content">
<img src="./images/logo.webp" width="76px" height="72px">
<img src="./images/logo-title.webp" width="103px" height="58px">
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
</body>
</html>