<!DOCTYPE html>
<html>
<head>
<title>Contact Us - Sazan Tourism Company</title>
<link rel="stylesheet" type="text/css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&family=Satisfy&display=swap');
/* CSS rule that imports fonts from the Google Fonts service.*/
h1 {
font-size: 2em;
text-align: center;
margin-bottom: 20px;
font-family: 'Satisfy', cursive;
}
body {
font-family: 'Roboto Condensed', sans-serif;
}
h1 {
font-size: 2em;
text-align: center;
margin-bottom: 20px;
font-family: 'Satisfy', cursive;
}
body {
font-family: 'Roboto Condensed', sans-serif;
}
body{
background-color: #95c8ff;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: white;
}
h1 {
font-size: 2em;
text-align: center;
margin-bottom: 20px;
}
form {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
margin-bottom: 40px;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
padding: 10px;
border: 2px solid #ccc;
border-radius: 5px;
font-size: 1em;
}
input[type="submit"] {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 1em;
cursor: pointer;
}
.contact-details {
background-color: #f8f8f8;
padding: 20px;
border-radius: 5px;
}
.contact-details h2 {
font-size: 1.5em;
margin-bottom: 10px;
}
.contact-details p {
margin-bottom: 5px;
}
.contact-details strong {
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<p>We would love to hear from you! Please fill out the form below to get in touch with us.</p>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<input type="submit" value="Submit">
</form>
<div class="contact-details">
<h2>Contact Details</h2>
<p><strong>Phone:</strong> 555-1234</p>
<p><strong>Email:</strong> info@sazan-tourism.com</p>
<p><strong>Address:</strong> 123 Main Street, Ktm ,Nepal</p>
</div>
</div>
</body>
</html>


0 Comments