-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
549 lines (275 loc) · 14.5 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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Alata&family=Anton&family=Bai+Jamjuree:wght@400;600&family=Josefin+Sans:wght@300&family=Lora&family=McLaren&family=Tapestry&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<title>Loop Studios</title>
<script src="js/script.js" defer></script>
</head>
<body>
<!-- Hero Section -->
<section id="hero">
<!-- Hero Container -->
<div class="container max-w-6xl mx-auto px-6 py-12">
<!-- Menu /Logo Container -->
<nav class="flex justify-between items-center font-bold text-white">
<!-- Logo -->
<img src="images/logo.svg" alt="">
<!-- Menu -->
<div class="hidden h-10 font-alata md:flex md:space-x-8">
<!-- Item-group-1 -->
<div class="group">
<a href="#">About</a>
<div class="mx-1 group-hover:border-b group-hover:border-blue-50 duration-200">
</div>
</div>
<!-- Item-group-2 -->
<div class="group">
<a href="#">Careers</a>
<div class="mx-1 group-hover:border-b group-hover:border-blue-50 duration-200">
</div>
</div>
<!-- Item-group-3 -->
<div class="group">
<a href="#">Events</a>
<div class="mx-1 group-hover:border-b group-hover:border-blue-50 duration-200">
</div>
</div>
<!-- Item-group-4 -->
<div class="group">
<a href="#">Products</a>
<div class="mx-1 group-hover:border-b group-hover:border-blue-50 duration-200">
</div>
</div>
<!-- Item-group-5 -->
<div class="group">
<a href="#">Support</a>
<div class="mx-1 group-hover:border-b group-hover:border-blue-50 duration-200">
</div>
</div>
<!-- -----------HAMBURGER BUTTON-------------- -->
</div>
<div class="md:hidden">
<button class="block hamburger z-50 md:hidden focus:outline-none" id="menu-button" type="button">
<span class="hamburger-top"></span>
<span class="hamburger-middle"></span>
<span class="hamburger-bottom"></span>
</button>
</div>
</nav>
<!--Mobile Menu -->
<div id="menu"
class="absolute top-0 bottom-0 left-0 right-0 hidden flex-col self-end w-full min-h-screen py-1 pt-40 pl-10 space-y-3 text-lg text-white uppercase bg-black ">
<a href="#" class="hover:scale-95 hover:text-pink-500 duration-200">About</a><a href="#"
class="hover:scale-95 hover:text-pink-500 duration-200">Careers</a><a href="#"
class="hover:scale-95 hover:text-pink-500 duration-200">Events</a><a href="#"
class="hover:scale-95 hover:text-pink-500 duration-200">Products</a><a href="#"
class="hover:scale-95 hover:text-pink-500 duration-200">Support</a>
</div>
<div
class="max-w-lg mt-32 mb-32 p-4 font-sans text-4xl text-white uppercase border-2 md:p-10 md:m-32 md:mx-0 md:text-5xl text-center md:text-left">
Impressive and Amazing Experiences That Deliver
</div>
</div>
</section>
<!-- Feature Section -->
<section id="feature">
<!-- Feature Container -->
<div class="relative container flex flex-col max-w-6xl mx-auto my-32 px-6 text-gray-900 md:flex-row md:px-0">
<!-- Image -->
<img src="images/desktop/image-interactive.jpg" alt="">
<!-- Text-container -->
<div class="top-48 pr-0 bg-white md:absolute md:right-0 md:py-10 md:pl-20 lg:right-3">
<h2
class="max-w-lg mt-10 mb-6 font-sans text-4xl text-center text-gray-900 uppercase md:text-5xl mt-0 md:text-left">
The leader in interactive VR</h2>
<p class="max-w-md text-center md:text-left">Founded in 2011, Loopstudios has been producing world-class
virtual reality projects for some of the best companies around the globe. Our award-winning
creations have transformed businesses through digital experiences that bind to their brand. </p>
</div>
</div>
</section>
<!-- Creation Section -->
<section id="creation">
<!-- Creation Container -->
<div class="container max-w-6xl mx-auto my-32 px-6 text-gray-900 md:px-0">
<!-- Creation Header -->
<div class="flex justify-center mb-20 md:justify-between">
<h2 class="text-4xl uppercase text-center md:text-left md:text-5xl">Our Creations</h2>
<button class="hidden btn md:block">See All</button>
</div>
<!-- ITEM CONTAINER-1 -->
<div class="item-container">
<!-- Image Items 1-->
<div class="group items">
<!-- Desktop Image -->
<img src="images/desktop/image-curiosity.jpg" alt="" class="desktop-image-props">
<!-- Mobile Image -->
<img src="images/mobile/image-curiosity.jpg" alt="" class="mobile-image-props">
<!-- Item Gradient -->
<div class="bg-image-gradient"></div>
<!-- Item Text -->
<h5 class="item-header">The curiosity</h5>
</div>
<!-- Image Items 2-->
<div class="group items">
<!-- Desktop Image -->
<img src="images/desktop/image-deep-earth.jpg" alt="" class="desktop-image-props">
<!-- Mobile Image -->
<img src="images/mobile/image-deep-earth.jpg" alt="" class="mobile-image-props">
<!-- Item Gradient -->
<div class="bg-image-gradient"></div>
<!-- Item Text -->
<h5 class="item-header">Deep Earth</h5>
</div>
<!-- Image Items 3-->
<div class="group items">
<!-- Desktop Image -->
<img src="images/desktop/image-night-arcade.jpg" alt="" class="desktop-image-props">
<!-- Mobile Image -->
<img src="images/mobile/image-night-arcade.jpg" alt="" class="mobile-image-props">
<!-- Item Gradient -->
<div class="bg-image-gradient"></div>
<!-- Item Text -->
<h5 class="item-header">Night Arcade</h5>
</div>
<!-- Image Items 4-->
<div class="group items">
<!-- Desktop Image -->
<img src="images/desktop/image-soccer-team.jpg" alt="" class="desktop-image-props">
<!-- Mobile Image -->
<img src="images/mobile/image-soccer-team.jpg" alt="" class="mobile-image-props">
<!-- Item Gradient -->
<div class="bg-image-gradient"></div>
<!-- Item Text -->
<h5 class="item-header">Soccer Team VR</h5>
</div>
</div>
<!-- ITEM CONTAINER -2 -->
<div class="item-container">
<!-- Image Items 5-->
<div class="group items">
<!-- Desktop Image -->
<img src="images/desktop/image-grid.jpg" alt="" class="desktop-image-props">
<!-- Mobile Image -->
<img src="images/mobile/image-grid.jpg" alt="" class="mobile-image-props">
<!-- Item Gradient -->
<div class="bg-image-gradient"></div>
<!-- Item Text -->
<h5 class="item-header">The Grid</h5>
</div>
<!-- Image Items 6-->
<div class="group items">
<!-- Desktop Image -->
<img src="images/desktop/image-from-above.jpg" alt="" class="desktop-image-props">
<!-- Mobile Image -->
<img src="images/mobile/image-from-above.jpg" alt="" class="mobile-image-props">
<!-- Item Gradient -->
<div class="bg-image-gradient"></div>
<!-- Item Text -->
<h5 class="item-header">From up above we vr</h5>
</div>
<!-- Image Items 7-->
<div class="group items">
<!-- Desktop Image -->
<img src="images/desktop/image-pocket-borealis.jpg" alt="" class="desktop-image-props">
<!-- Mobile Image -->
<img src="images/mobile/image-pocket-borealis.jpg" alt="" class="mobile-image-props">
<!-- Item Gradient -->
<div class="bg-image-gradient"></div>
<!-- Item Text -->
<h5 class="item-header">Pocket Borealis</h5>
</div>
<!-- Image Items 8-->
<div class="group items">
<!-- Desktop Image -->
<img src="images/desktop/image-fisheye.jpg" alt="" class="desktop-image-props">
<!-- Mobile Image -->
<img src="images/mobile/image-fisheye.jpg" alt="" class="mobile-image-props">
<!-- Item Gradient -->
<div class="bg-image-gradient"></div>
<!-- Item Text -->
<h5 class="item-header">Make it FishEye</h5>
</div>
</div>
<!-- BUTTON CONTAINER -->
<button class="btn md:hidden block w-full mx-auto">See All</button>
</div>
</section>
<!-- Footer Section -->
<footer class="bg-black">
<!-- Main Container -->
<div class="container max-w-6xl py-10 mx-auto">
<!-- Footer Flex Container -->
<div
class="flex flex-col justify-center items-center mb-8 space-y-6 md:flex-row space-y-0 md:justify-between md:items-start">
<!-- Logo and Menu Container -->
<div class="flex flex-col items-center space-y-8 md:items-start md:space-y-6 j">
<!-- Logo -->
<div class="h-8">
<img src="images/logo.svg" alt="" class="select-none">
</div>
<!-- Menu Container -->
<div
class="flex flex-col space-y-2 items-center font-bold text-white md:flex-row md:space-y-0 md:space-x-6 ">
<!-- Item 1 -->
<div class="h-10 group relative" id="nav__link1">
<div class="w-0 " id="1"></div><a href="#">About</a>
</div>
<!-- Item 2 -->
<div class="h-10 group relative" id="nav__link2">
<div class="w-0 " id="2"></div><a href="#">Careers</a>
</div>
<!-- Item 3 -->
<div class="h-10 group relative" id="nav__link3">
<div class="w-0 " id="3"></div><a href="#">Events</a>
</div>
<!-- Item 4 -->
<div class="h-10 group relative" id="nav__link4">
<div class="w-0 " id="4"></div><a href="#">Products</a>
</div>
<!-- Item 5 -->
<div class="h-10 group relative" id="nav__link5">
<div class="w-0 " id="5"></div><a href="#">Support</a>
</div>
</div>
</div>
<!-- Social Media & Copyright Container -->
<div class="flex flex-col items-center justify-between space-y-4 text-gray-500">
<!-- Icons Container -->
<div class="flex flex-row items-center justify-center space-x-4 md:justify-end select-none">
<!-- Icon -1 -->
<div class="h-8 group cursor-pointer animate-bounce">
<img src="images/icon-facebook.svg" alt="">
</div>
<!-- Icon -2 -->
<div class="h-8 group cursor-pointer animate-bounce">
<img src="images/icon-instagram.svg" alt="">
</div>
<!-- Icon -3 -->
<div class="h-8 group cursor-pointer animate-bounce">
<img src="images/icon-twitter.svg" alt="">
</div>
<!-- Icon -4 -->
<div class="h-8 group cursor-pointer animate-bounce">
<img src="images/icon-pinterest.svg" alt="">
</div>
</div>
<!-- Copyright Container -->
<div class="flex flex-col justify-center items-center md:justify-end font-bold select-none">
© 2023 LoopStudios. All Rights Reserved.
<span>Made with 💘 by Sachin Dsilva</span>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>