-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.77 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accordion</title>
<link rel="stylesheet" href="style.css">
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</head>
<body>
<div class="container">
<div class="element">
<p class="qstn">What is your return policy?</p>
<ion-icon name="chevron-down-circle-outline" class="icon"></ion-icon>
<p class="ans">Our return policy allows you to return items within 30 days of receipt for a full refund. Items must be in original condition with all tags attached. To initiate a return, please contact our customer service team with your order details.</p>
<p class="qstn"> How do I track my order?</p>
<ion-icon name="chevron-down-circle-outline" class="icon"></ion-icon>
<p class="ans"> Once your order has shipped, you will receive an email with a tracking number and a link to the courier’s website where you can track your package. You can also track your order through your account on our website.</p>
<p class="qstn"> Do you offer international shipping?</p>
<ion-icon name="chevron-down-circle-outline" class="icon"></ion-icon>
<p class="ans"> Yes, we offer international shipping to many countries. Shipping costs and delivery times vary depending on the destination. Please refer to our shipping information page for more details on international shipping options and rates.</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>