-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (51 loc) · 2.18 KB
/
index.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accordion Menu</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Pure CSS Accordion Menu</h1>
<h2>FAQ</h2>
<div class="accordionMenu">
<input type="radio" name="trg1" id="acc1" checked="checked">
<label for="acc1">Can I cancel my subscription at anytime?</label>
<div class="content">
<div class="inner">
Sure. Your paid subscription can be cancelled anytime by shifting to Lite plan.
</div>
</div>
<input type="radio" name="trg1" id="acc2">
<label for="acc2">Can I change my plan later on?</label>
<div class="content">
<div class="inner">
Absolutely! You can upgrade or downgrade your plan anytime. The money paid for the previous subscription will be recalculated to the new plan.
</div>
</div>
<input type="radio" name="trg1" id="acc3">
<label for="acc3">Will you renew my subscription automatically?</label>
<div class="content">
<div class="inner">
Yes, your subscription will be automatically renewed according to your pay period.
</div>
</div>
<input type="radio" name="trg1" id="acc5">
<label for="acc5">Do you offer any discounts?</label>
<div class="content">
<div class="inner">
Yes! We offer 17% discount for payment per year. There may be other temporary discounts, check for this inside the service.
</div>
</div>
<input type="radio" name="trg1" id="acc6">
<label for="acc6">Can I request a refund?</label>
<div class="content">
<div class="inner">
Sure, you will be welcome to request your refund within 14 days of subscribing to any paid plan.
</div>
</div>
</div>
</body>
</html>