-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path09b-pricing-plans.html
More file actions
58 lines (51 loc) · 993 Bytes
/
09b-pricing-plans.html
File metadata and controls
58 lines (51 loc) · 993 Bytes
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">
<head>
<title>Pricing Plans</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/base.css" />
<style type="text/css">
section {
margin: 4rem auto;
padding: 2rem;
display: grid;
grid-template-columns: minmax(9rem, 16rem);
gap: 2rem;
justify-content: center;
}
@media screen and (min-width: 620px) {
section {
grid-template-columns: repeat(3, minmax(9rem, 16rem));
}
}
span {
font-size: 0.8rem;
opacity: 0.8;
}
p {
font-size: 2rem;
font-weight: bold;
margin: 1.5rem 0 0;
}
</style>
</head>
<body>
<section>
<div class="plan">
<h2>Standard</h2>
<span>Monthly Plan</span>
<p>$25</p>
</div>
<div class="plan plan-highlight">
<h2>Popular</h2>
<span>Monthly Plan</span>
<p>$40</p>
</div>
<div class="plan">
<h2>Premium</h2>
<span>Monthly Plan</span>
<p>$55</p>
</div>
</section>
</body>
</html>