-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathspaces.html
More file actions
208 lines (178 loc) · 5.47 KB
/
Copy pathspaces.html
File metadata and controls
208 lines (178 loc) · 5.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Our Spaces - CoWorkHub</title>
<link rel="stylesheet" href="style.css" />
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
background-color: #f9fafb;
color: #111827;
}
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.5rem;
margin-bottom: 40px;
animation: fadeIn 1s ease-out;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
animation: fadeInUp 1.2s ease-in-out;
}
.card {
background-color: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.card img {
width: 100%;
height: 220px;
object-fit: cover;
transition: transform 0.5s ease;
}
.card:hover img {
transform: scale(1.05);
}
.card-body {
padding: 20px;
}
.card-title {
font-size: 1.4em;
margin: 0 0 10px;
color: #1f2937;
}
.card-desc {
font-size: 0.95em;
color: #4b5563;
line-height: 1.5;
}
footer {
background-color: #1f2937;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 60px;
}
/* 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); }
}
@media (max-width: 500px) {
.card img {
height: 180px;
}
}
</style>
</head>
<body>
<header>
<h1>Explore Our Spaces</h1>
<p>Designed to boost your productivity and comfort</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>Workspace Options</h2>
<div class="grid">
<!-- Hot Desk -->
<div class="card">
<img src="https://smartway2.com/wp-content/uploads/2020/11/hot-desking-for-the-open-plan-office-1080x675.jpg" alt="Hot Desk">
<div class="card-body">
<h3 class="card-title">Hot Desk</h3>
<p class="card-desc">Flexible seating in a shared environment. Perfect for freelancers and digital nomads who love variety.</p>
</div>
</div>
<!-- Dedicated Desk -->
<div class="card">
<img src="https://images.squarespace-cdn.com/content/v1/54f54ee5e4b08c831d40bb34/1589058802124-1OQVOP2BP6BE6XAMO7UL/RollerDesk-018a.jpg" alt="Dedicated Desk">
<div class="card-body">
<h3 class="card-title">Dedicated Desk</h3>
<p class="card-desc">Your own desk reserved daily. Includes storage and 24/7 access for consistent productivity.</p>
</div>
</div>
<!-- Private Office -->
<div class="card">
<img src="https://images.unsplash.com/photo-1593642634367-d91a135587b5?fit=crop&w=1000&q=80" alt="Private Office">
<div class="card-body">
<h3 class="card-title">Private Office</h3>
<p class="card-desc">Fully furnished private offices for teams of 1-10. Quiet, secure, and fully serviced.</p>
</div>
</div>
<!-- Meeting Room -->
<div class="card">
<img src="https://images.unsplash.com/photo-1573164574572-cb89e39749b4?fit=crop&w=1000&q=80" alt="Meeting Room">
<div class="card-body">
<h3 class="card-title">Meeting Rooms</h3>
<p class="card-desc">Modern, high-tech rooms for meetings and presentations. Equipped with whiteboards, projectors, and more.</p>
</div>
</div>
<!-- Event Space -->
<div class="card">
<img src="https://www.sgmytaxi.com/wp-content/uploads/WSPACE-Coworking-Event-Hall.jpg" alt="Event Space">
<div class="card-body">
<h3 class="card-title">Event Space</h3>
<p class="card-desc">Spacious area for workshops, networking events, or company parties. Catering and support available.</p>
</div>
</div>
</div>
</div>
<footer>
<p>© 2025 StudySit. All rights reserved.</p>
</footer>
</body>
</html>