-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (133 loc) · 4.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./assets/images/favicon-32x32.png" type="image/x-icon">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Alata (400) -->
<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&display=swap" rel="stylesheet">
<!-- Josefin Sans (300) -->
<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=Josefin+Sans:wght@300&display=swap" rel="stylesheet">
<title>Loopstudios landing page</title>
</head>
<body>
<header class="flex">
<nav class="flex">
<div class="logo">
<figure>
<img src="./assets/images/logo.svg" alt="logo">
</figure>
</div>
<div class="menu hidden--secondary">
<figure>
<img src="./assets/images/icon-hamburger.svg" alt="menu">
</figure>
</div>
<div class="list hidden--primary">
<ul class="flex">
<li><a href="#">About</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
</nav>
<section class="hero flex">
<h1>Immersive experiences that deliver</h1>
</section>
</header>
<main>
<section class="presentation width">
<div class="presentation__content grid">
<figure>
<img src="./assets/images/mobile/image-interactive.jpg" srcset="./assets/images/mobile/image-interactive.jpg 832w,
./assets/images/desktop/image-interactive.jpg 1920w" alt="interactive VR">
</figure>
<div class="presentation__data flex">
<h2>The leader in interactive VR</h2>
<p>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>
<section class="creations width">
<div class="creations__heading flex">
<h2>Our Creations</h2>
<a href="#">See All</a>
</div>
<div class="creations__cards grid">
<div class="creations__cards-card earth flex">
<h3>Deep <br> earth</h3>
</div>
<div class="creations__cards-card arcade flex">
<h3>Night <br> arcade</h3>
</div>
<div class="creations__cards-card soccer flex">
<h3>Soccer <br> team VR</h3>
</div>
<div class="creations__cards-card race flex">
<h3>The <br> grid</h3>
</div>
<div class="creations__cards-card vr flex">
<h3>From up <br> above VR</h3>
</div>
<div class="creations__cards-card borealis flex">
<h3>Pocket <br> borealis</h3>
</div>
<div class="creations__cards-card curiosity flex">
<h3>The <br> curiosity</h3>
</div>
<div class="creations__cards-card fisheye flex">
<h3>Make it <br> fisheye</h3>
</div>
</div>
</section>
</main>
<footer class="flex">
<div class="container--primary flex">
<div class="container--primary__logo">
<figure>
<img src="./assets/images/logo.svg" alt="logo">
</figure>
</div>
<nav>
<ul class="flex">
<li><a href="#">About</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Support</a></li>
</ul>
</nav>
</div>
<div class="container--secondary flex">
<div class="container--secondary__socials">
<figure class="flex">
<a href="#">
<img src="./assets/images/icon-facebook.svg" alt="facebook">
</a>
<a href="#">
<img src="./assets/images/icon-twitter.svg" alt="twitter">
</a>
<a href="#">
<img src="./assets/images/icon-pinterest.svg" alt="pinterest">
</a>
<a href="#">
<img src="./assets/images/icon-instagram.svg" alt="instagram">
</a>
</figure>
</div>
<div class="container--secondary__copyright">
<p>© 2021 Loopstudios. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>