-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
34 lines (34 loc) · 1.02 KB
/
about.html
File metadata and controls
34 lines (34 loc) · 1.02 KB
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>
<head>
<title>About Us</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&family=Oswald&display=swap');
</style>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<!-- Navigation Menu -->
<nav id="nav-list">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<button type="button" onclick="toggleMenu(event)">=</button>
</header>
<h1>About Us</h1>
<section id="mission">
<h2>Our Mission</h2>
<p>This is the about page of our basic website.</p>
</section>
<section id="team">
<h2>Our Team</h2>
<p>We have a dedicated team to help you.</p>
</section>
<script src="script.js"></script>
</body>
</html>