forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
56 lines (54 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - TourGuide</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="about.css">
</head>
<body>
<div class="background">
<video autoplay muted loop playsinline>
<source src="./about.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="content-wrapper">
<header>
<h1 class="heading">About Us</h1>
<p class="subheading">Discover Your Purpose Through Travel</p>
</header>
<div class="content-block">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/veULUjsSrPg?si=eq3sDAt3-yZnZUme" allowfullscreen></iframe>
</div>
<p class="summary">
Welcome to TourGuide, where life's purpose unfolds through exploration and the pursuit of the extraordinary. We empower you to navigate the world with unparalleled assistance, forging unforgettable memories.
</p>
<p class="summary">
Our local guides help you effortlessly navigate languages, customs, and traditions. We offer curated itineraries, once-in-a-lifetime experiences, and valuable travel advice, all customizable to your wishes.
</p>
<p class="summary">
Since 2024, TourGuide has grown to 30,000+ guides across 200+ countries. Join our family, where every journey becomes a story worth sharing!
</p>
<div class="features">
<div class="feature">
<i class="fas fa-map-marked-alt"></i>
<h3>Curated Itineraries</h3>
</div>
<div class="feature">
<i class="fas fa-users"></i>
<h3>Local Guides</h3>
</div>
<div class="feature">
<i class="fas fa-star"></i>
<h3>Unforgettable Experiences</h3>
</div>
</div>
<a href="/" class="cta-button">Start Your Journey</a>
</div>
</div>
</body>
</html>