Contact Us
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Inmoroco.online</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
text-align: center;
color: #333;
}
p {
font-size: 1.1em;
line-height: 1.6;
color: #555;
margin-bottom: 20px;
}
.highlight {
color: #007BFF;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<p>If you have any questions or inquiries, feel free to get in touch with us. We are here to assist you!</p>
<p><strong>Email:</strong> <a href="mailto:contact@inmoroco.online" class="highlight">contact@inmoroco.online</a></p>
<p><strong>Phone:</strong> +212 123 456 789</p>
<p><strong>Address:</strong> 1234 Street Name, City, Morocco</p>
</div>
</body>
</html>