-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
59 lines (54 loc) · 2.45 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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"/>
<title>About Us</title>
</head>
<body>
<nav>
<div class="navbar">
<div class="nav-logo">
<div class="logo"></div>
</div>
<div class="nav-links">
<ul>
<li><a href="index.html"><i class="fa-solid fa-house"></i>Home</a></li>
<li><a href="About.html"><i class="fa-solid fa-circle-info"></i>About</a></li>
<li><a href="services.html"><i class="fa-solid fa-gear"></i>Services</a></li>
<li><a href="Blog.html"><i class="fa-solid fa-blog"></i>Blog</a></li>
</ul>
</div>
<div class="buttons">
<button onclick="location.href='#signin'">Sign In</button>
<button onclick="location.href='#register'">Register</button>
</div>
</div>
</nav>
<div class="about-section">
<h1>About Us</h1>
<p>Learn more about our mission, team, and how to get in touch.</p>
</div>
<div class="content-section">
<div class="content-box">
<h2>Our Mission</h2>
<p>Nova is dedicated to bringing you the best travel experiences around the world. Our mission is to inspire and enable travelers to explore new destinations, experience different cultures, and make unforgettable memories.</p>
</div>
<div class="content-box">
<h2>Our Team</h2>
<p>We are a group of passionate travelers and technology enthusiasts who believe in the power of travel to transform lives. Our team works tirelessly to provide you with the best tools and resources to plan your next adventure.</p>
</div>
<div class="content-box">
<h2>Contact Us</h2>
<p>If you have any questions, feedback, or just want to say hello, feel free to reach out to us at:</p>
<ul>
<li>Email: [email protected]</li>
<li>Phone: +123-456-7890</li>
<li>Address: 123 Adventure Lane, Wanderlust City, Travel Country</li>
</ul>
</div>
</div>
</body>
</html>