-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (63 loc) · 2.28 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Subscription cards</title>
<!-- <link rel="stylesheet" href="cards.css"> -->
<link rel="stylesheet" href="Cards.css">
</head>
<body>
<div class="body">
<div id="main">
<div class="top">
<p>Your current plan:</p>
<h5>Starter Trial • 500MAUs</h5>
</div>
<div class="container">
<div class="starter">
<p class="title">Starter</p>
<p class="pricing">$19</p>
<ul>
<li>500 MAUs</li>
<li>3 Project</li>
<li>Unlimited Guides</li>
<li>Unlimited Flows</li>
<li>Unlimited Flows</li>
<li>Email Support</li>
</ul>
<div class="btn"><button>Choose plan</button></div>
</div>
<div class="pro">
<p class="title">Pro</p>
<p class="pricing">$99<span> / month</span></p>
<div class="tag-monthly">
<p class="tag">2500 MAUs</p>
<p class="monthly">Monthly Active Users</p>
</div>
<ul>
<li>All starter features, plus:</li>
<li>Unlimited Projects</li>
<li>Unlimited Custom Themes</li>
<li>Dedicated Relations Manager</li>
</ul>
<div class="btn"><button>Choose plan</button></div>
</div>
<div class="enterprise">
<p class="title">Enterprise</p>
<p class="pricing">Let's talk!</p>
<ul>
<li>All Pro features</li>
<li>Unlimited MAUs</li>
<li>Dedicated environment</li>
<li>Enterprise solutions</li>
<li>Unlimited Branded Themes</li>
<li>Premius support</li>
</ul>
<div class="btn"><button>Contact us</button></div>
</div>
</div>
</div>
</div>
</body>
</html>