Contact Us

<!DOCTYPE html>
<html lang=”en-GB”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Contact Us | RR8.com.pk</title>

<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
}

.container {
max-width: 700px;
margin: 50px auto;
background: #ffffff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
text-align: centre;
margin-bottom: 20px;
}

p {
line-height: 1.6;
colour: #333;
}

form {
margin-top: 20px;
}

input, textarea {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}

button {
background-color: #000;
colour: #fff;
padding: 12px 25px;
border: none;
border-radius: 5px;
cursor: pointer;
}

button:hover {
background-color: #333;
}

.contact-info {
margin-top: 25px;
font-size: 14px;
}
</style>
</head>

<body>

<div class=”container”>
<h1>Contact Us</h1>

<p>
Welcome to RR8.com.pk. If you have any questions, feedback, or business enquiries,
feel free to contact us using the form below. We aim to respond as soon as possible.
</p>

<form action=”#” method=”post”>
<input type=”text” name=”name” placeholder=”Your Name” required>
<input type=”email” name=”email” placeholder=”Your Email” required>
<textarea name=”message” rows=”5″ placeholder=”Your Message” required></textarea>
<button type=”submit”>Send Message</button>
</form>

<div class=”contact-info”>
<p><strong>Email:</strong> support@rr8.com.pk</p>
<p><strong>Website:</strong> www.rr8.com.pk</p>
</div>
</div>

</body>