<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact</title>
<style>
body { font-family: Arial; padding: 40px; background:#202225; color:white; }
.box { max-width: 600px; margin:auto; }
input, textarea {
width: 100%; padding: 10px; margin: 10px 0;
border-radius: 6px; border:none;
}
button {
padding: 10px 20px; background:#4a90e2; border:none;
color:white; border-radius:6px; cursor:pointer;
}
</style>
</head>
<body>
<div class="box">
<h1>Contact</h1>
<p>Send a message using this placeholder form.</p>
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea rows="6" placeholder="Your Message"></textarea>
<button>Send Message</button>
</div>
</body>
</html>