Contact Us

Contact Us

<!DOCTYPE html>
<html lang=”bn”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>drgrees.xyz | যোগাযোগ করুন</title>
<link href=”https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;600;700&display=swap” rel=”stylesheet”>
<style>
body {
margin: 0;
font-family: “Noto Sans Bengali”, sans-serif;
background: #f4f7fb;
color: #1f2937;
}

header {
background: #0b74de;
color: #fff;
text-align: center;
padding: 20px 10px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
header h1 {
margin: 0;
font-size: 28px;
font-weight: 700;
}

nav {
background: #ffffff;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
padding: 12px 10px;
border-bottom: 1px solid #e5e7eb;
}
nav a {
text-decoration: none;
color: #0b74de;
font-weight: 600;
}
nav a:hover {
color: #063b86;
}

.contact-section {
max-width: 900px;
margin: 40px auto;
padding: 0 20px;
}
.contact-section h2 {
color: #0b74de;
font-size: 24px;
margin-bottom: 20px;
border-left: 5px solid #0b74de;
padding-left: 10px;
}

.contact-info {
margin-bottom: 30px;
}
.contact-info p {
font-size: 15px;
margin: 6px 0;
}

form {
background: #ffffff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

form label {
display: block;
margin-bottom: 6px;
font-weight: 600;
}

form input, form textarea {
width: 100%;
padding: 10px 12px;
margin-bottom: 16px;
border-radius: 6px;
border: 1px solid #d1d5db;
font-size: 14px;
}
form textarea {
resize: vertical;
height: 120px;
}

form button {
background: #0b74de;
color: white;
padding: 10px 18px;
font-size: 15px;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
}
form button:hover {
background: #084c9d;
}

footer {
text-align: center;
padding: 18px;
background: #0b74de;
color: white;
font-size: 14px;
margin-top: 40px;
}

</style>
</head>
<body>

<header>
<h1>drgrees.xyz</h1>
<p>বাংলাদেশের সর্বশেষ চাকরির সার্কুলার</p>
</header>

<nav>
<a href=”index.html”>হোম</a>
<a href=”#”>সরকারি চাকরি</a>
<a href=”#”>বেসরকারি চাকরি</a>
<a href=”#”>ব্যাংক চাকরি</a>
<a href=”#”>এনজিও চাকরি</a>
<a href=”about.html”>আমাদের সম্পর্কে</a>
<a href=”contact.html”>যোগাযোগ</a>
</nav>

<section class=”contact-section”>
<h2>যোগাযোগ করুন</h2>

<div class=”contact-info”>
<p> ইমেল: info@drgrees.xyz</p>
<p> ওয়েবসাইট: <a href=”https://drgrees.xyz”>https://drgrees.xyz</a></p>
<p> ফোন: +880 1234 567890</p>
<p> ঠিকানা: ঢাকা, বাংলাদেশ</p>
</div>

<form action=”#” method=”post”>
<label for=”name”>নাম</label>
<input type=”text” id=”name” name=”name” placeholder=”আপনার নাম লিখুন” required>

<label for=”email”>ইমেল</label>
<input type=”email” id=”email” name=”email” placeholder=”আপনার ইমেল লিখুন” required>

<label for=”subject”>বিষয়</label>
<input type=”text” id=”subject” name=”subject” placeholder=”বিষয় লিখুন” required>

<label for=”message”>বার্তা</label>
<textarea id=”message” name=”message” placeholder=”আপনার বার্তা লিখুন” required></textarea>

<button type=”submit”>পাঠিয়ে দিন</button>
</form>
</section>

<footer>
© <span id=”year”></span> drgrees.xyz — সর্বস্বত্ব সংরক্ষিত
</footer>

<script>
document.getElementById(‘year’).textContent = new Date().getFullYear();
</script>

</body>
</html>