Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
158 changes: 158 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Tourest</title>

<!--
- favicon
-->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">

<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">

<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Comforter+Brush&family=Heebo:wght@400;500;600;700&display=swap"
rel="stylesheet">

</head>

<body>

<!--
- #HEADER
-->

<header class="header" data-header>
<div class="container">

<a href="#">
<h1 class="logo">Tourest</h1>
</a>

<button class="nav-toggle-btn" data-nav-toggle-btn aria-label="Toggle Menu">
<ion-icon name="menu-outline" class="open"></ion-icon>
<ion-icon name="close-outline" class="close"></ion-icon>
</button>

<nav class="navbar">

<ul class="navbar-list">

<li><a href="#" class="navbar-link">Home</a></li>
<li><a href="#" class="navbar-link">Tours</a></li>
<li><a href="#" class="navbar-link">Destinations</a></li>
<li><a href="#" class="navbar-link">Blog</a></li>
<li><a href="contact.html" id="contactUsBtn" class="btn btn-primary">Contact Us</a></li>

</ul>

<a href="#" class="btn btn-secondary">Booking Now</a>

</nav>

</div>
</header>

<main>
<article>

<!--
- #ABOUT
-->

<section class="section about">
<div class="container">

<div class="about-content">
<p class="section-subtitle">Our Story</p>

<h2 class="h2 section-title">Discover the Heartbeat of Tourest</h2>

<p class="about-text">
At Tourest, we believe that travel is not just about visiting places but about experiencing the world in its fullest. Founded in 2020, we are passionate about crafting unforgettable journeys that connect people with the beauty and diversity of our planet.
</p>

<div class="about-info">
<div class="about-info-item">
<img src="./assets/images/popular-1.jpg" alt="Our Team" class="about-image">
<h3 class="h3 about-info-title">Meet Our Team</h3>
<p class="about-info-text">
Our team of travel enthusiasts is dedicated to creating personalized experiences that cater to your every need. With years of experience and a deep love for exploration, we're here to guide you every step of the way.
</p>
</div>

<div class="about-info-item">

<h3 class="h3 about-info-title">Our Values</h3>
<p class="about-info-text">
We prioritize sustainability, customer satisfaction, and cultural respect. Our goal is to make a positive impact on the destinations we visit while ensuring that our travelers have an enriching and enjoyable experience.
</p>
</div>

<div class="about-info-item">

<h3 class="h3 about-info-title">Our Vision</h3>
<p class="about-info-text">
We envision a world where travel fosters understanding and unity among diverse cultures. Through our curated tours, we aim to inspire curiosity and build lasting connections between travelers and the places they visit.
</p>
</div>
</div>

<a href="contact.html" class="btn btn-primary">Join Us on an Adventure</a>

</div>

<figure class="about-banner">

</figure>

</div>
</section>

</article>
</main>

<!--
- #FOOTER
-->

<footer class="footer" style="background-image: url('./assets/images/footer-bg.png')">
<div class="container">
<!-- Footer content as before -->
</div>
</footer>

<!--
- #GO TO TOP
-->

<a href="#top" class="go-top" data-go-top aria-label="Go To Top">
<ion-icon name="chevron-up-outline"></ion-icon>
</a>

<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>

<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>

</body>

</html>
3 changes: 2 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1030,4 +1030,5 @@ body {

.about .container { grid-template-columns: 0.7fr 1fr; }

}
}

16 changes: 16 additions & 0 deletions contact-form/node_modules/.bin/mime

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions contact-form/node_modules/.bin/mime.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions contact-form/node_modules/.bin/mime.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading