-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (70 loc) · 2.19 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
<!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">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Alata&family=Josefin+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="Styles/style.css">
<title>Frontend Mentor | Loopstudios landing page</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<section id="top-wrapper">
<nav class="container">
<div class="logo">
<img src="images/logo.svg" alt="">
</div>
<ul></ul>
<div class="ham">
<img src="images/icon-hamburger.svg" alt="">
</div>
<div class="list nav-hidden">
<ul>
<li><a>About</a></li>
<li><a>Careers</a></li>
<li><a>Events</a></li>
<li><a>Products</a></li>
<li><a>Support</a></li>
</ul>
</div>
</nav>
<header class="container">
<div class="heading">
<h1>IMMERSIVE EXPERIENCES THAT DELIVER</h1>
</div>
</header>
</section>
The leader in interactive VR
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.
Our creations
See all
Deep earth
Night arcade
Soccer team VR
The grid
From up above VR
Pocket borealis
The curiosity
Make it fisheye
About
Careers
Events
Products
Support
© 2021 Loopstudios. All rights reserved.
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
<script src="Scripts/main.js"></script>
</body>
</html>