-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable_pricing.html
More file actions
46 lines (42 loc) · 900 Bytes
/
table_pricing.html
File metadata and controls
46 lines (42 loc) · 900 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
<div class="pricing-table">
<div class="plan">
<h3>Basic</h3>
<p>$10/month</p>
<button>Select</button>
</div>
<div class="plan">
<h3>Pro</h3>
<p>$30/month</p>
<button>Select</button>
</div>
<div class="plan">
<h3>Enterprise</h3>
<p>$50/month</p>
<button>Select</button>
</div>
</div>
<style>
.pricing-table {
display: flex;
gap: 20px;
text-align: center;
}
.plan {
background: #f7f7f7;
padding: 20px;
border-radius: 8px;
transition: 0.3s;
}
.plan:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
button {
background: #ff9800;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 5px;
}
</style>