FAQ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FAQs - MH Trends</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background: #fff;
color: #333;
padding: 20px;
}
h1 {
text-align: center;
margin-bottom: 30px;
}
.faq {
margin-bottom: 20px;
}
.faq h3 {
background: #f5f5f5;
padding: 12px;
cursor: pointer;
border-radius: 5px;
}
.faq p {
display: none;
padding: 12px;
border-left: 3px solid #007bff;
margin: 0;
background: #fafafa;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", () => {
const faqs = document.querySelectorAll(".faq h3");
faqs.forEach(faq => {
faq.addEventListener("click", () => {
const content = faq.nextElementSibling;
content.style.display = content.style.display === "block" ? "none" : "block";
});
});
});
</script>
</head>
<body>
<h1>Frequently Asked Questions (FAQs)</h1>
<div class="faq">
<h3>1. How can I place an order?</h3>
<p>You can easily place an order by selecting your desired product, choosing the size/color (if applicable), and clicking on “Add to Cart” then proceed to checkout.</p>
</div>
<div class="faq">
<h3>2. What payment methods do you accept?</h3>
<p>We accept Cash on Delivery (COD) all over Pakistan and secure online payments through cards.</p>
</div>
<div class="faq">
<h3>3. How long does delivery take?</h3>
<p>Delivery usually takes 3-5 working days depending on your location.</p>
</div>
<div class="faq">
<h3>4. Can I return or exchange my order?</h3>
<p>Yes, you can return or exchange your product within 7 days of receiving your order. The product must be unused and in original packaging.</p>
</div>
<div class="faq">
<h3>5. How can I contact customer support?</h3>
<p>You can reach us at <b>Email:</b> mhtrendsofficial01@gmail.com or <b>Phone:</b> 0303-0242219</p>
</div>
</body>
</html>