-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpriceing.html
134 lines (120 loc) · 2.81 KB
/
priceing.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pricing</title>
<style>
/* Reset default margin and padding */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styles for dark background */
body {
background-color: #1a1a1a;
color: #fff;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
/* Container for pricing cards */
.pricing-container {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
max-width: 1200px;
width: 90%;
margin-top: 40px;
}
/* Styling for individual pricing cards */
.pricing-card {
background-color: #333;
padding: 30px;
border-radius: 10px;
text-align: center;
width: 300px;
margin: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
/* Price styling */
.price {
font-size: 28px;
margin-bottom: 20px;
color: #ff8800;
}
/* Button styles */
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #ff8800;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #ffaa33;
}
/* Header style */
h1 {
text-align: center;
margin-bottom: 40px;
color: #fff;
}
/* List style */
ul {
list-style: none;
padding: 0;
margin: 20px 0;
}
li {
margin-bottom: 8px;
}
</style>
</head>
<body>
<h1>Choose Your Plan</h1>
<div class="pricing-container">
<div class="pricing-card">
<h2>Basic Plan</h2>
<p class="price">$9.99/month</p>
<ul>
<li>Feature 1</li>
<li>Feature 2</li>
<li>Feature 3</li>
<li>Feature 4</li>
<li>Feature 5</li>
</ul>
<a href="#" class="btn">Get Started</a>
</div>
<div class="pricing-card">
<h2>Premium Plan</h2>
<p class="price">$19.99/month</p>
<ul>
<li>Feature 1</li>
<li>Feature 2</li>
<li>Feature 3</li>
<li>Feature 4</li>
<li>Feature 5</li>
</ul>
<a href="#" class="btn">Get Started</a>
</div>
<div class="pricing-card">
<h2>Pro Plan</h2>
<p class="price">$29.99/month</p>
<ul>
<li>Feature 1</li>
<li>Feature 2</li>
<li>Feature 3</li>
<li>Feature 4</li>
<li>Feature 5</li>
</ul>
<a href="#" class="btn">Get Started</a>
</div>
</div>