-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathindex.html
More file actions
244 lines (204 loc) · 5.33 KB
/
Copy pathindex.html
File metadata and controls
244 lines (204 loc) · 5.33 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>CoWorkHub - Home</title>
<style>
/* --- RESET & BASE --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9fafb;
color: green;
overflow-x: hidden;
}
body {
background-image: url('TECHNOLOGIA.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
a {
text-decoration: none;
color: inherit;
}
img {
width: 100%;
height: auto;
display: block;
}
/* --- HEADER --- */
header {
background-color: #1f2937;
color: white;
padding: 20px 0;
text-align: center;
}
nav {
background-color: #374151;
display: flex;
justify-content: center;
gap: 20px;
padding: 15px 0;
}
nav a {
color: #fff;
font-weight: 500;
transition: color 0.3s;
}
nav a:hover {
color: #10b981;
}
/* --- HERO SLIDER --- */
.slider {
position: relative;
overflow: hidden;
max-height: 500px;
}
.slides {
display: flex;
transition: transform 0.8s ease-in-out;
}
.slide {
min-width: 100%;
transition: opacity 0.8s ease-in-out;
}
.slider-buttons {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
padding: 0 20px;
}
.slider-buttons button {
background: rgba(0, 0, 0, 0.5);
color: white;
border: none;
font-size: 24px;
padding: 10px 15px;
cursor: pointer;
border-radius: 50%;
}
/* --- ABOUT SECTION --- */
.about {
max-width: 1100px;
margin: 60px auto;
padding: 0 20px;
text-align: center;
animation: fadeIn 1.2s ease-in-out;
}
.about h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}
.about p {
font-size: 1.1rem;
color: white;
}
/* --- REVIEWS SECTION --- */
.reviews {
background-color: #e0f2f1;
padding: 60px 20px;
}
.reviews h2 {
text-align: center;
font-size: 2rem;
margin-bottom: 40px;
}
.review-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
max-width: 1100px;
margin: 0 auto;
animation: fadeInUp 1.2s ease-in-out;
}
.review {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.review p {
color: #374151;
font-size: 0.95rem;
}
.review .author {
margin-top: 15px;
font-weight: bold;
color: #10b981;
}
footer {
background-color: #1f2937;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 40px;
}
/* --- ANIMATIONS --- */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(60px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
.slider-buttons button {
font-size: 18px;
padding: 8px;
}
}
</style>
</head>
<body>
<!-- HEADER -->
<header>
<h1>Welcome to StudySit</h1>
<p>India's first hyperlocal space for students and office workers.</p>
</header>
<!-- NAVIGATION -->
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="spaces.html">Spaces</a>
<a href="pricing.html">Pricing</a>
<a href="contact.html">Contact</a>
</nav>
<!-- ABOUT SECTION -->
<section class="about">
<h2>Why Choose StudySit?</h2>
<p>Whether you’re a student or a growing startup, StudySit provides beautifully designed spaces, superfast Wi-Fi, great coffee, and a vibrant community of professionals. Book your seat, desk, or private office — whenever you need it.</p>
</section>
<!-- REVIEWS SECTION -->
<section class="reviews">
<h2>What Our Members Say</h2>
<div class="review-cards">
<div class="review">
<p>"I love the energy here! It’s the perfect balance of quiet and collaborative. Plus, the coffee is awesome!"</p>
<div class="author">– Sarah T.</div>
</div>
<div class="review">
<p>"Our team switched to StudySit and productivity went through the roof. The private office is just what we needed."</p>
<div class="author">– David R.</div>
</div>
<div class="review">
<p>"I only need a desk a few days a week and StudySit gives me that flexibility. Super easy to book!"</p>
<div class="author">– Amina K.</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<p>© 2025 StudySit. All rights reserved.</p>
</footer>
</body>
</html>