-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
159 lines (158 loc) · 6.66 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
<!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="stylesheet" href="css/style.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png" />
<title>Frontend Mentor | Loopstudios landing page</title>
</head>
<body>
<div class="body-container">
<header>
<div class="header-container">
<nav>
<div class="logo"></div>
<div class="burger-btn"></div>
<div class="menu-desktop">
<ul>
<li>about</li>
<li>careers</li>
<li>events</li>
<li>products</li>
<li>support</li>
</ul>
</div>
</nav>
<div class="menu-mobile">
<div class="menu-mobile-header">
<div class="close-btn"></div>
</div>
<ul>
<li>about</li>
<li>careers</li>
<li>events</li>
<li>products</li>
<li>support</li>
</ul>
</div>
<section class="hero">
<div class="immersive-box">
Immersive
<span class="experiences">experiences</span> that
deliver
</div>
<div class="arrow"></div>
</section>
</div>
</header>
<main>
<div class="main-container">
<section class="after-hero">
<picture class="blue-shirt"></picture>
<div class="text">
<h1>The leader in interactive vr</h1>
<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 class="galery">
<div class="galery-title">
<h2>Our creations</h2>
<input
class="desktop-btn button"
type="button"
value="See all" />
</div>
<div class="pictures">
<div class="earth box">
<p>deep earth</p>
</div>
<div class="arcade box">
<p>night arcade</p>
</div>
<div class="soccer box">
<p>soccer team vr</p>
</div>
<div class="grid box">
<p>the grid</p>
</div>
<div class="above box">
<p>from up above vr</p>
</div>
<div class="borealis box">
<p>pocket borealis</p>
</div>
<div class="curiosity box">
<p>the curiosity</p>
</div>
<div class="fisheye box">
<p>make it fisheye</p>
</div>
</div>
<input
class="mobile-btn button"
type="button"
value="See all" />
</section>
</div>
</main>
<footer>
<div class="footer-container">
<div class="footer-menu">
<div class="footer-logo"></div>
<div class="footer-list">
<ul>
<li>about</li>
<li>careers</li>
<li>events</li>
<li>products</li>
<li>support</li>
</ul>
</div>
</div>
<div class="social-media">
<div class="social-icons">
<a href="#" target="_blank"
><img
src="./images/icon-facebook.svg"
alt="facebook icon"
/></a>
<a href="#" target="_blank"
><img
src="./images/icon-twitter.svg"
alt="twitter icon"
/></a>
<a href="#" target="_blank"
><img
src="./images/icon-pinterest.svg"
alt="pinterest icon"
/></a>
<a href="#" target="_blank"
><img
src="./images/icon-instagram.svg"
alt="instagram icon"
/></a>
</div>
<div class="copy">
© <span class="year"></span> Loopstudios. All
rights reserved.
</div>
</div>
</div>
</footer>
</div>
</body>
<script src="script/script.js"></script>
</html>