-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpricing.html
More file actions
211 lines (180 loc) · 4.92 KB
/
Copy pathpricing.html
File metadata and controls
211 lines (180 loc) · 4.92 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Pricing - StudySit</title>
<link rel="stylesheet" href="style.css" />
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
}
body {
background-image: url('TECHNOLOGIA.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
header {
background-color: #1f2937;
color: white;
padding: 30px 0;
text-align: center;
}
nav {
background-color: #374151;
display: flex;
justify-content: center;
padding: 15px 0;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
font-weight: 500;
transition: background 0.3s ease;
}
nav a:hover {
background-color: #4b5563;
border-radius: 5px;
}
.container {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
}
h2 {
text-align: center;
font-size: 2.5em;
margin-bottom: 40px;
color: #111827;
animation: fadeIn 1s ease-in-out;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
animation: fadeInUp 1.2s ease-in-out;
}
.card {
background: white;
border-radius: 12px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
padding: 30px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.card h3 {
margin-top: 0;
color: #111827;
}
.price {
font-size: 2em;
color: #10b981;
margin: 10px 0;
}
.features {
list-style: none;
padding: 0;
margin: 20px 0;
}
.features li {
padding: 10px 0;
border-bottom: 1px solid #eee;
color: #374151;
}
.btn {
display: inline-block;
padding: 12px 25px;
background-color: #10b981;
color: white;
border: none;
border-radius: 8px;
font-weight: bold;
text-decoration: none;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #059669;
}
footer {
background-color: #1f2937;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 40px;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(40px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<header>
<h1>Pricing Plans</h1>
<p>Choose the best plan that suits your working style</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="spaces.html">Spaces</a>
<a href="pricing.html">Pricing</a>
<a href="contact.html">Contact</a>
</nav>
<div class="container">
<h2>Our Plans</h2>
<div class="pricing-grid">
<div class="card">
<h3>Hourly Pass</h3>
<p class="price"> From Rs.35/hour</p>
<ul class="features">
<li>Access to Hot Desk</li>
<li>High-Speed Wi-Fi</li>
<li>At your convenient location</li>
<li>Comfy desks designed exclusively for you</li>
</ul>
<a href="https://docs.google.com/forms/d/1TMrEUecsNHq3SCoyBVekGn2oPdz4Egge-MgSMZXGZyg/viewform" class="btn">Book Now</a>
</div>
<div class="card">
<h3>Weekly Pass</h3>
<p class="price">Rs.1999/week</p>
<ul class="features">
<li>Dedicated Desk</li>
<li>Locker & Storage</li>
<li>12 hours Access</li>
<li>Free Conference Room Use</li>
</ul>
<a href="https://docs.google.com/forms/d/1TMrEUecsNHq3SCoyBVekGn2oPdz4Egge-MgSMZXGZyg/viewform" class="btn">Book Now</a>
</div>
<div class="card">
<h3>Monthly Pass</h3>
<p class="price">Rs.5000/month</p>
<ul class="features">
<li>Private, Lockable Office</li>
<li>Mailbox & Address</li>
<li>12 hours Access</li>
<li>All Amenities Included</li>
</ul>
<a href="https://docs.google.com/forms/d/1TMrEUecsNHq3SCoyBVekGn2oPdz4Egge-MgSMZXGZyg/viewform" class="btn">Book Now</a>
</div>
</div>
</div>
<footer>
<p>© 2025 StudySit. All rights reserved.</p>
</footer>
</body>
</html>