-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
77 lines (71 loc) · 3.2 KB
/
about.html
File metadata and controls
77 lines (71 loc) · 3.2 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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - TravelBloom</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="logo">
<img src="https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?auto=format&fit=crop&w=80&h=80&q=80" alt="TravelBloom Logo">
<h1>TravelBloom</h1>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
</div>
</nav>
<!-- About Section -->
<section class="hero">
<div class="about-content">
<h2>ABOUT US</h2>
<div class="about-info">
<p>Welcome to Our Company! We are a team of passionate individuals dedicated to providing excellent services/products to our customers. Our mission is to <strong>provide the best experience</strong> for people traveling to different destinations around the world.</p>
<p>Our values include integrity, innovation, customer satisfaction, and teamwork. We believe in <strong>putting our customers first</strong> and <strong>working together</strong> to achieve our goals.</p>
<p>Feel free to explore our website to learn more about what we offer!</p>
</div>
<div class="team-section">
<h3>Our Team</h3>
<div class="team-members">
<div class="team-member">
<div class="avatar">
<i class="fas fa-user"></i>
</div>
<h4>John Doe</h4>
<p>John is responsible for...</p>
<span class="role">CEO</span>
</div>
<div class="team-member">
<div class="avatar">
<i class="fas fa-user"></i>
</div>
<h4>Celina Thomas</h4>
<p>Celina Thomas is responsible for...</p>
<span class="role">Team Lead</span>
</div>
<div class="team-member">
<div class="avatar">
<i class="fas fa-user"></i>
</div>
<h4>Mike Tysen</h4>
<p>Mike Tysen is responsible for...</p>
<span class="role">Delivery Head</span>
</div>
</div>
</div>
</div>
</section>
<!-- Social Media Icons -->
<div class="social-icons">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</body>
</html>