-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (109 loc) · 5.09 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
<!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="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="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png" />
<link rel="stylesheet" href="css/style.css" />
<title>Frontend Mentor | Loopstudios landing page</title>
</head>
<body>
<header class="header">
<nav class="header__navigation">
<img class="header__logo" src="./images/logo.svg" alt="Logo">
<input type="checkbox" class="header__checkbox" id="navi-toggle" data-label="Hamburger">
<label for="navi-toggle" class="header__hamburger">
<img src="./images/icon-hamburger.svg" alt="Hamburger Icon">
</label>
<div class="header__container">
<div class="header__bar">
<img class="header__logo" src="./images/logo.svg" alt="Logo">
<label class="header__close" for="navi-toggle"><img src="./images/icon-close.svg" alt="Close"></label>
</div>
<ul class="header__links">
<li class="header__link"><a class="header__anchor" href="#">About</a></li>
<li class="header__link"><a class="header__anchor" href="#">Careers</a></li>
<li class="header__link"><a class="header__anchor" href="#">Events</a></li>
<li class="header__link"><a class="header__anchor" href="#">Products</a></li>
<li class="header__link"><a class="header__anchor" href="#">Support</a></li>
</ul>
</div>
</nav>
<div class="header__box">
<h1 class="header__title">Immersive experiences that deliver</h1>
</div>
</header>
<section class="interactive">
<div class="interactive__box">
<div class="interactive__texts">
<h3 class="interactive__title">The leader in interactive vr</h3>
<p class="interactive__description">
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="creation">
<h2 class="creation__title">Our creations</h2>
<button class="creation__btn">See all</button>
<div class="creation__images">
<div class="creation__image creation__image--1">
<h4 class="creation__text">Deep <span class="creation__text--break">earth</span></h4>
</div>
<div class="creation__image creation__image--2">
<h4 class="creation__text">Night <span class="creation__text--break">arcade</span></h4>
</div>
<div class="creation__image creation__image--3">
<h4 class="creation__text">Soccer <span class="creation__text--break">team VR</span></h4>
</div>
<div class="creation__image creation__image--4">
<h4 class="creation__text">The <span class="creation__text--break">grid</span></h4>
</div>
<div class="creation__image creation__image--5">
<h4 class="creation__text">From up <span class="creation__text--break">above VR</span></h4>
</div>
<div class="creation__image creation__image--6">
<h4 class="creation__text">Pocket <span class="creation__text--break">borealis</span></h4>
</div>
<div class="creation__image creation__image--7">
<h4 class="creation__text">The <span class="creation__text--break">curiosity</span></h4>
</div>
<div class="creation__image creation__image--8">
<h4 class="creation__text">Make it <span class="creation__text--break">fisheye</span></h4>
</div>
</div>
</section>
<footer class="footer">
<img src="./images/logo.svg" alt="Logo" class="footer__logo">
<div class="footer__icons">
<div class="footer__icon">
<img src="./images/icon-facebook.svg" alt="Facebook" class="footer__icon">
</div>
<div class="footer__icon">
<img src="./images/icon-twitter.svg" alt="Twitter" class="footer__icon">
</div>
<div class="footer__icon">
<img src="./images/icon-pinterest.svg" alt="Pinterest" class="footer__icon">
</div>
<div class="footer__icon">
<img src="./images/icon-instagram.svg" alt="Instagram" class="footer__icon">
</div>
</div>
<nav class="footer__navigation">
<ul class="footer__links">
<li class="footer__link"><a class="footer__anchor" href="#">About</a></li>
<li class="footer__link"><a class="footer__anchor" href="#">Careers</a></li>
<li class="footer__link"><a class="footer__anchor" href="#">Events</a></li>
<li class="footer__link"><a class="footer__anchor" href="#">Products</a></li>
<li class="footer__link"><a class="footer__anchor" href="#">Support</a></li>
</ul>
</nav>
<p class="footer__copy">© 2021 Loopstudios. All rights reserved.</p>
</footer>
</body>
</html>