-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
221 lines (215 loc) · 9.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Loopstudios landing page</title>
<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">
<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">
<!-- My custom css file -->
<link rel="stylesheet" href="./public/css/styles.css">
</head>
<body>
<header class="top-nav">
<nav class="navbar navbar-expand-sm pt-5 position-relative">
<div class="container">
<a href="javascript:void(0)">
<img src="./images/logo.svg" alt="website logo">
</a>
<img src="./images/icon-hamburger.svg" class="toggle" alt="close icon">
<div class="justify-content-end customNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-white ps-4" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link text-white ps-4" href="#careers">Careers</a>
</li>
<li class="nav-item">
<a class="nav-link text-white ps-4" href="#events">Events</a>
</li>
<li class="nav-item">
<a class="nav-link text-white ps-4" href="#products">Products</a>
</li>
<li class="nav-item">
<a class="nav-link text-white ps-4" href="#support">Support</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<section aria-labelledby="landing-title" class="full-height landing d-flex align-items-center">
<div class="container">
<div class="title-wrapper border border-3 p-4 mx-auto mx-md-0">
<h1 id="landing-title" class="display-1 text-white text-uppercase page-title">Immersive experiences that
deliver</h1>
</div>
</div>
</section>
<section class="full-height about-us py-9" aria-labelledby="about-us">
<div class="container position-relative">
<div class="img-container">
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-interactive.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-interactive.jpg">
<img class="img-fluid" width="800" height="700" src="./images/mobile/image-interactive.jpg"
alt="man using var">
</picture>
</div>
<div class="about-intro bg-white pt-5 px-xl-9 pt-xl-8">
<h2 id="about-us" class="text-uppercase display-5 mb-4 text-center text-xl-start">The leader in interactive VR
</h2>
<p class="text-dark-gray mb-0 text-center text-xl-start">
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="full-height pb-9">
<div class="container">
<header class="d-flex justify-content-between mb-5">
<h2 class="display-6 text-uppercase">Our creations</h2>
<a href="javascript:void(0)" class=" btn-custom text-dark-gray-xl text-uppercase bg-white align-self-start">See all</a>
</header>
<div class="creations-cat">
<div class="product-item">
<div class="overlay"></div>
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-deep-earth.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-deep-earth.jpg">
<img src="./images/mobile/image-deep-earth.jpg" alt="earth image">
</picture>
<h3 class="cat-title text-white text-uppercase">Deep <br> earth</h3>
</div>
<div class="product-item">
<div class="overlay"></div>
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-night-arcade.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-night-arcade.jpg">
<img src="./images/mobile/image-night-arcade.jpg" alt="night arcade image">
</picture>
<h3 class="cat-title text-white text-uppercase">Night <br> arcade</h3>
</div>
<div class="product-item">
<div class="overlay"></div>
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-soccer-team.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-soccer-team.jpg">
<img src="./images/mobile/image-soccer-team.jpg" alt="Soccer team VR">
</picture>
<h3 class="cat-title text-white text-uppercase">Soccer <br> team VR</h3>
</div>
<div class="product-item">
<div class="overlay"></div>
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-grid.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-grid.jpg">
<img src="./images/mobile/image-grid.jpg" alt="The grid">
</picture>
<h3 class="cat-title text-white text-uppercase">The <br> grid</h3>
</div>
<div class="product-item">
<div class="overlay"></div>
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-from-above.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-from-above.jpg">
<img src="./images/mobile/image-from-above.jpg" alt="From up above VR">
</picture>
<h3 class="cat-title text-white text-uppercase">From up <br> above VR</h3>
</div>
<div class="product-item">
<div class="overlay"></div>
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-pocket-borealis.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-pocket-borealis.jpg">
<img src="./images/mobile/image-pocket-borealis.jpg" alt="Pocket borealis">
</picture>
<h3 class="cat-title text-white text-uppercase">Pocket <br> borealis</h3>
</div>
<div class="product-item">
<div class="overlay"></div>
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-curiosity.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-curiosity.jpg">
<img src="./images/mobile/image-curiosity.jpg" alt="The curiosity">
</picture>
<h3 class="cat-title text-white text-uppercase">The <br> curiosity</h3>
</div>
<div class="product-item">
<div class="overlay"></div>
<picture>
<source media="(min-width: 40em)" srcset="./images/desktop/image-fisheye.jpg">
<source media="(max-width: 40em)" srcset="./images/mobile/image-fisheye.jpg">
<img src="./images/mobile/image-fisheye.jpg" alt="car image">
</picture>
<h3 class="cat-title text-white text-uppercase">Make it <br> fisheye</h3>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-black py-5 ">
<div class="container">
<div class="row">
<div class="col-md-6 footer-align mb-5">
<img class="mb-4 img-fluid" width="200" height="40" src="./images/logo.svg" alt="website logo">
<ul class="footer-nav ">
<li class="nav-item">
<a href="#about" class="nav-link text-white">About</a>
</li>
<li class="nav-item">
<a href="#careers" class="nav-link text-white">Careers</a>
</li>
<li class="nav-item">
<a href="#events" class="nav-link text-white">Events</a>
</li>
<li class="nav-item">
<a href="#products" class="nav-link text-white">Products</a>
</li>
<li class="nav-item">
<a href="#support" class="nav-link text-white">Support</a>
</li>
</ul>
</div>
<div class="col-md-6 footer-align end">
<ul class=" nav list-unstyled pb-1">
<li class="nav-item px-2">
<a href="javascript:void(0)">
<img src="./images/icon-facebook.svg" alt="facebook icon">
</a>
</li>
<li class="nav-item px-2">
<a href="javascript:void(0)">
<img src="./images/icon-twitter.svg" alt="twitter icon">
</a>
</li>
<li class="nav-item px-2">
<a href="javascript:void(0)">
<img src="./images/icon-pinterest.svg" alt="pinterest icon">
</a>
</li>
<li class="nav-item px-2">
<a href="javascript:void(0)">
<img src="./images/icon-instagram.svg" alt="instagram icon">
</a>
</li>
</ul>
<p class="text-white-50 small pt-4">© 2021 Loopstudios. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script src="./public/js/main.js"></script>
</body>
</html>