Code_Generater_best / index (2).html
rashadzaky's picture
Upload index (2).html
a09e0d5 verified
raw
history blame
2.03 kB
<!DOCTYPE html>
<html>
<head>
<title>Contact Us - i- buy website</title>
<link rel="stylesheet" href='../styles/style.css'>
<style>
body {
background-color: #001f3f; /* Dark blue background */
color: #ffffff; /* White text color */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.contact-section {
text-align: center;
}
.contact-image {
margin: 20px 0;
}
.contact-image img {
max-width: 300px;
height: auto;
border-radius: 10px;
}
form {
display: inline-block;
text-align: left;
}
</style>
</head>
<body>
<div class="contact-section">
<h1>Contact Us</h1>
<p>If you have any questions about your order or our products, feel free to contact us using the form below.</p>
<div class="contact-image">
<img src="WhatsApp Image 2024-08-12 at 21.42.17_90dbf6f3.jpg" alt="Contact Us Image">
</div>
<form action="#" method="post">
<label for="name">name:</label><br>
<input type="text" id="name" name="name" ><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" ><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="5" cols="30" ></textarea><br><br>
<input type="submit" value="Send">
</form>
<p>Email:[email protected]</p>
<p>Phone:0111 214 1113</p>
<p>Shiekh Zayed, Waslet Dahshour, Point 6 Mall, Next to princess Cafe</p>
<p>Location: <a href="https://maps.app.goo.gl/Wpvz9gBHn5zw9CZx8" target="_blank" style="color: #ffffff; text-decoration: underline;">View on Google Maps</a></p>
</div>
</body>
</html>