-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplans.html
61 lines (60 loc) · 1.79 KB
/
plans.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>Document</title>
<link rel="stylesheet" href="./styles/plans.css">
</head>
<body>
<div id="container">
<div id="header">
<div id="cblogo">
<img
id="cbImage"
onclick="gotoHome()"
src="/images/cb_logo.svg"
alt=""
/>
</div>
<button>View All Plans</button>
</div>
<div id="comboPlan">
<div id="oneyear">
<h1>Save INR 4000+ with 1 Combo plan!</h1>
<p>Cricbuzz Plus + Times Prime</p>
<h1 id="one">1 Year Combo Plan</h1>
<div>
<button id="btn1">Unlock now for INR 999</button>
<button id="btn2">Learn more</button>
</div>
<p>By continuing you agree to cancellation & Refund Policy</p>
</div>
<div id="imgDiv">
<img
src="https://www.cricbuzz.com/a/img/v1/401x301/i1/c226020/hero_plan.jpg"
alt=""
/>
</div>
</div>
<div id="PlusBenefits">
<div id="benefits">
<h3>Cricbuzz Plus Benefits</h3>
<p>
Unlock Cricbuzz Plus to enjoy these benefits on website and mobile
app.
</p>
</div>
<div id="displayPlans"></div>
<p>And many more upcoming amazing features</p>
</div>
<div id="select">
<h2>SELECT YOUR PLAN</h2>
<div id="selectChoice"></div>
<button id="paymentbtn" onclick="gotopayment()">Continue to payment</button>
</div>
</div>
</body>
</html>
<script src="./scripts/plans.js"></script>