-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
49 lines (43 loc) · 1 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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>About Us - Travel Recommendation</title>
<style>
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
.team-member {
margin: 20px;
text-align: center;
}
.team-member h3 {
margin: 5px 0;
}
.team-member p {
margin: 0;
}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
</nav>
<h1>About Us</h1>
<p>We are a team of travel enthusiasts committed to helping you find the best travel destinations.</p>
</body>
</html>