<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Koloniesland Estate</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
color: #fff;
text-align: center;
padding: 20px;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
h1 {
color: #007bff;
}
p {
font-size: 1.1em;
}
.contact-info {
text-align: center;
margin-top: 20px;
}
.contact-info p {
font-size: 1.2em;
margin: 5px;
}
.facebook-link {
text-align: center;
margin-top: 20px;
}
.facebook-link a {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Koloniesland Estate</h1>
</header>
<div class="container">
<h2>About Koloniesland</h2>
<p>Koloniesland Estate is nestled in the picturesque town of Stellenbosch, South Africa. Our estate offers a serene and luxurious living experience, surrounded by the natural beauty of the Stellenbosch Winelands.</p>
<div class="contact-info">
<h3>Contact Information</h3>
<h4>Contact the Chairman of Koloniesland, Pieter Uys </h4>
<p>Address: 125 Noordwal-Oos Street, Stellenbosch, 7600</p>
<p>Email: pieter.uys1@gmail.com</p>
<p>Phone: +27 82 99 00 226</p>
</div>
<div class="facebook-link">
<a href="https://www.facebook.com/profile.php?id=61551803258503" target="_blank">Visit Our Facebook Page</a>
</div>
</div>
</body>
</html>