-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
37 lines (30 loc) · 1.03 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
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>About the Company</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="banner">
<h1>About the Company!</h1>
</div>
<div class="content">
<h2>Our Mission</h2>
<p>Here you can write about the mission of your company.</p>
<h2>Our Team</h2>
<p>Here you can introduce your team members and their roles.</p>
<h2>Our History</h2>
<p>Here you can provide some background about the company's history.</p>
<h2>Contact Us</h2>
<p>Here you can provide contact information for the company.</p>
</div>
<!-- Add your footer here -->
<div class="footer">
<button onclick="location.href='dir.html'">Home</button>
<button onclick="location.href='join.html'">Join the team</button>
<button onclick="location.href='more.html'">More</button>
</div>
</body>
</html>