Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Who We Are</title> | |
<style> | |
body { | |
margin: 0; | |
font-family: Arial, sans-serif; | |
background-color: #444; /* Set background color to dark gray */ | |
color: white; /* Set text color to white */ | |
line-height: 1.6; | |
} | |
.back-arrow { | |
position: absolute; | |
top: 20px; /* Position from top */ | |
left: 20px; /* Position from left */ | |
text-decoration: none; | |
color: white; | |
font-size: 24px; | |
font-weight: bold; | |
display: flex; | |
align-items: center; | |
gap: 5px; /* Space between icon and text */ | |
} | |
.back-arrow:hover { | |
color: #ccc; /* Change color on hover */ | |
} | |
.container { | |
max-width: 800px; /* Restrict content width for better readability */ | |
margin: 50px auto; /* Center content vertically and horizontally */ | |
padding: 20px; | |
background-color: #444; /* Maintain dark gray background */ | |
border-radius: 10px; /* Add rounded corners for a modern look */ | |
} | |
h1, h2, h3 { | |
color: white; /* Ensure headings are white */ | |
} | |
h1 { | |
text-align: center; | |
margin-bottom: 20px; | |
} | |
p { | |
margin: 10px 0; | |
} | |
.values { | |
margin-top: 20px; | |
} | |
.values ul { | |
list-style-type: none; /* Remove bullet points */ | |
padding: 0; | |
} | |
.values ul li { | |
margin: 5px 0; | |
padding: 5px 0; | |
background-color: #555; /* Slightly lighter background for values list */ | |
border-radius: 5px; | |
} | |
.values ul li:hover { | |
background-color: #666; /* Highlight list item on hover */ | |
} | |
</style> | |
</head> | |
<body> | |
<!-- Back Arrow to Home --> | |
<a href="index.html" class="back-arrow"> | |
← Home | |
</a> | |
<div class="container"> | |
<h1>Who We Are</h1> | |
<p>Welcome to the Saudi Travel and Tourism Website, dedicated to providing unparalleled services from travel planning to tourist destination discovery. Our AI integration ensures a seamless, personalized experience, delivering precise, accurate information to enrich your journey through Saudi Arabia's diverse culture, rich history, and promising future.</p> | |
<h2>Our Mission</h2> | |
<p>Our mission is to make every journey through Saudi Arabia an enriching and unforgettable experience. We aim to highlight the beauty and depth of Saudi culture, history, and modern developments, ensuring travelers enjoy a seamless and personalized adventure. | |
To provide dedicated and unparalleled services to tourists in Saudi Arabia, ensuring every traveler experiences the kingdom's rich heritage, diverse culture, and warm hospitality with the utmost convenience and satisfaction. | |
We are AI-integrated and committed to providing a seamless experience. Our dedication ensures that you receive accurate, to-the-point information that enriches your journey through Saudi Arabia.</p> | |
<h2>Our Vision</h2> | |
<p>We envision a world where the wonders of Saudi Arabia are accessible to all. Through innovative technology and unparalleled services, we strive to make Saudi Arabia a top travel destination for global explorers. Our mission is to create unforgettable, enriching experiences that showcase the kingdom's breathtaking landscapes, vibrant culture, and modern marvels. By fostering a deep appreciation for Saudi Arabia's unique charm, we aim to inspire and connect people from around the globe, making every journey memorable and transformative.</p> | |
<h2>Our Values</h2> | |
<div class="values"> | |
<ul> | |
<li><strong>Excellence:</strong> Committed to providing top-tier services to every traveler.</li> | |
<li><strong>Innovation:</strong> Continuously improving our platform with cutting-edge technology.</li> | |
<li><strong>Integrity:</strong> Ensuring honesty and transparency in all our dealings.</li> | |
<li><strong>Cultural Respect:</strong> Honoring and showcasing the rich heritage of Saudi Arabia.</li> | |
</ul> | |
</div> | |
<h2>Promoting Saudi Tourism</h2> | |
<p>We play a vital role in promoting Saudi tourism by offering comprehensive travel planning services. From historic sites in Al-Ula to the modern marvels of Riyadh and the cultural richness of Jeddah, our platform connects travelers to the heart of Saudi Arabia. We offer curated itineraries, insightful guides, and personalized recommendations to ensure every visit is memorable.</p> | |
<h2>Meet the Team</h2> | |
<p>Our dedicated team of experts and enthusiasts is at the core of our success. Each member brings a wealth of knowledge, passion, and commitment to promoting Saudi Arabia as a premier travel destination. Together, we strive to provide exceptional service and unforgettable experiences to our clients.</p> | |
</div> | |
</body> | |
</html> | |