-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSub.html
58 lines (52 loc) · 1.59 KB
/
Sub.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Sub.css">
<title>Pricing Table</title>
</head>
<body>
<section>
<a href="PaymentGateway.html" class="pricing-card">
<div>
<h3>Starter</h3>
<h4>Rs 100</h4>
<p>per Month</p>
<ul>
<li>Less Ads</li>
<li>3 Playlist</li>
<li>5 Podcasts</li>
</ul>
<Button class="btn primary">Choose Plan</Button>
</div>
</a>
<a href="PaymentGateway.html" class="pricing-card">
<div>
<h3>Popular</h3>
<h4>Rs 150</h4>
<p>per Month</p>
<ul>
<li>No Ads</li>
<li>Unlimited music</li>
<li>Unlimited Podcasts</li>
</ul>
<Button class="btn blue">Choose Plan</Button>
</div>
</a>
<a href="PaymentGateway.html" class="pricing-card">
<div>
<h3>Premium</h3>
<h4>Rs 250</h4>
<p>per Month</p>
<ul>
<li>All Popular plus</li>
<li>Exclusive events</li>
<li>Exclusive content</li>
</ul>
<Button class="btn primary">Choose Plan</Button>
</div>
</a>
</section>
</body>
</html>