-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (104 loc) · 2.73 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<style>
/* Add a dark background to the entire page */
body {
background-color: #333;
color: #fff;
}
/* Style the pricing table */
.pricing-table {
text-align: center;
padding: 50px;
}
/* Style the pricing options */
.pricing-option {
background-color: #444;
border-radius: 10px;
box-shadow: 0px 0px 10px #000;
margin: 20px 0;
padding: 30px;
transition: all 0.3s ease;
}
/* Style the pricing option headers */
.pricing-option h3 {
font-size: 36px;
margin-bottom: 20px;
}
/* Style the pricing option details */
.pricing-option p {
font-size: 18px;
margin-bottom: 20px;
}
/* Style the pricing option buttons */
.pricing-option button {
background-color: #fff;
border: 2px solid #fff;
border-radius: 20px;
color: #333;
display: inline-block;
font-size: 18px;
margin-top: 20px;
padding: 10px 20px;
transition: all 0.3s ease;
}
/* Add hover effects to the pricing options */
.pricing-option:hover {
background-color: #555;
cursor: pointer;
transform: translateY(-10px);
}
.pricing-option:hover button {
background-color: #333;
color: #fff;
}
</style>
</head>
<body>
<div class="container">
<h2 class="text-center" style="margin-bottom: 50px;">Pricing Options</h2>
<div class="row">
<!-- Option 1 -->
<div class="col-sm-4">
<div class="pricing-option">
<h3>Credit-based</h3>
<p>Pay as you go with credits</p>
<p>10 credits for $10</p>
<button>Choose Plan</button>
</div>
</div>
<!-- Option 2 -->
<div class="col-sm-4">
<div class="pricing-option">
<h3>Monthly Subscription</h3>
<p>Unlimited upscaling for $50/month</p>
<button>Choose Plan</button>
</div>
</div>
<!-- Option 3 -->
<div class="col-sm-4">
<div class="pricing-option">
<h3>Yearly Subscription</h3>
<p>Unlimited upscaling for $500/year</p>
<button>Choose Plan</button>
</div>
</div>
</div>
</div>
</body>
</html>