-
Notifications
You must be signed in to change notification settings - Fork 161
/
pricing.html
98 lines (90 loc) · 2.63 KB
/
pricing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
}
main {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
.pricing-table {
border-collapse: collapse;
width: 100%;
}
.pricing-table th, .pricing-table td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.pricing-table th {
background-color: #007bff;
color: #fff;
}
.cta-button {
display: inline-block;
background-color: #007bff;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
.cta-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<header>
<h1>Pricing</h1>
<p>This page outlines the pricing plans or packages offered by our company. You can find details about different tiers, features included in each plan, and pricing information.</p>
</header>
<main>
<table class="pricing-table">
<thead>
<tr>
<th>Plan</th>
<th>Features</th>
<th>Price</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>Basic</td>
<td>Feature 1, Feature 2</td>
<td>$XX.XX/month</td>
<td><a href="#" class="cta-button">Sign Up</a></td>
</tr>
<tr>
<td>Standard</td>
<td>Feature 1, Feature 2, Feature 3</td>
<td>$XX.XX/month</td>
<td><a href="#" class="cta-button">Sign Up</a></td>
</tr>
<tr>
<td>Premium</td>
<td>Feature 1, Feature 2, Feature 3, Feature 4</td>
<td>$XX.XX/month</td>
<td><a href="#" class="cta-button">Sign Up</a></td>
</tr>
</tbody>
</table>
</main>
</body>
</html>