-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
119 lines (111 loc) · 4.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<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=Josefin+Sans:wght@300&display=swap" rel="stylesheet">
<title>Loopstudios landing page</title>
</head>
<body>
<section id="hero" class="heroSectionBackgroundImage">
<div class="navigationBar container">
<h3 class="brand">loopstudios</h2>
<nav>
<ul id="navbar" data-visible="false" class="navigationLink">
<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>
<button class="mobileNavToggle" aria-controls="navbar" aria-expanded="false"> </button>
</div>
<div class="container">
<h1 class="heroBoxedText">Immersive experiences that deliver</h1>
</div>
</section>
<section id="featured" class="container featured">
<div class="featuredImage">
</div>
<div class="featuredPost">
<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>
</section>
<section id="gridCardPost" class="postCard container">
<h2 class="postSectionTittle">our creations</h1>
<button type="button" class="controllerButton">
See All
</button>
<div class="gridCardPostWrapper">
<div class="gridPostCard imageOne">
<h3 class="postTittle">
Deep<pre>earth</pre>
</h3>
</div>
<div class="gridPostCard imageTwo">
<h3 class="postTittle">
Night<pre>arcade</pre>
</h3>
</div>
<div class="gridPostCard imageThree">
<h3 class="postTittle">
Soccer<pre>team VR</pre>
</h3>
</div>
<div class="gridPostCard imageFour">
<h3 class="postTittle">
The<pre>grid</pre>
</h3>
</div>
<div class="gridPostCard imageFive">
<h3 class="postTittle">
From up<pre>above VR</pre>
</h3>
</div>
<div class="gridPostCard imageSix">
<h3 class="postTittle">
Pocket<pre>borealis</pre>
</h3>
</div>
<div class="gridPostCard imageSeven">
<h3 class="postTittle">
The<pre>curiosity</pre>
</h3>
</div>
<div class="gridPostCard imageEight">
<h3 class="postTittle">
Make it<pre>fisheye</pre>
</h3>
</div>
</div>
</section>
<footer class="footer">
<div class="quickLink">
<h3>loopstudios</h3>
<div class="footerLink">
<a href="#">About</a>
<a href="#">Careers</a>
<a href="#">Events</a>
<a href="#">Products</a>
<a href="#">Support</a>
</div>
</div>
<div class="socialLink">
<div class="socialIcon">
<a href="#"><img src="https://i.postimg.cc/JhH67V2k/icon-facebook.png" alt=" "></a>
<a href="#"><img src="https://i.postimg.cc/dtJx2fLb/icon-instagram.png" alt=" "></a>
<a href="#"><img src="https://i.postimg.cc/RZDpzVXm/icon-twitter.png" alt=" "></a>
<a href="#"><img src="https://i.postimg.cc/02ZHcCSb/icon-pinterest.png" alt=" "></a>
</div>
<p class="copy">© 2021 Loopstudios. All rights reserved.</p>
</div>
</footer>
</body>
<script src="script.js"></script>
</html>