File size: 2,029 Bytes
a09e0d5 |
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 57 58 59 60 61 62 63 64 |
<!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>
|