-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (98 loc) · 3.44 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
<!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">
<script src="https://kit.fontawesome.com/8777cace87.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Loopstudios landing page</title>
</head>
<body>
<header>
<nav id="navHeader" class="navHeader">
<div class="header-links">
<img src="/images/logo.svg" alt="Logo">
<button class="navToggle" id="navToggle">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="links">
<a href="#About">About</a>
<a href="#Careers">Careers</a>
<a href="#Events">Events</a>
<a href="#Products">Products</a>
<a href="#Support">Support</a>
</div>
</nav>
<section class="header-info">
<h1>Immersive experiences that deliver</h1>
</section>
</header>
<section id="about">
<div class="section-wrapper">
<div class="img-container">
<img src="/images/desktop/image-interactive.jpg" alt="VAR">
</div>
<div class="info">
<div>
</div>
<div class="about-info">
<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>
</div>
</div>
</section>
<section id="our-creation">
<div class="creation-wrapper">
<h1>Our creations</h1>
<button id="see-all">See all</button>
<div class="creation-gallery">
<div class="img1 img"><h1>Deep Earth</h1></div>
<div class="img2 img"><h1>Night arcade</h1></div>
<div class="img3 img"><h1>Soccer team VR</h1></div>
<div class="img4 img"><h1>The grid</h1></div>
<div class="img5 img"><h1>From up above VR</h1></div>
<div class="img6 img"><h1>Pocket borealis</h1></div>
<div class="img7 img"><h1>The curiosity</h1></div>
<div class="img8 img"><h1>Make it fisheye</h1></div>
</div>
</div>
</section>
<footer id="footer">
<div class="footer-wrapper">
<div class="footer-links gen">
<img src="/images/logo.svg" alt="Logo">
<div class="link">
<a href="#About">About</a>
<a href="#Careers">Careers</a>
<a href="#Events">Events</a>
<a href="#Products">Products</a>
<a href="#Support">Support</a>
</div>
</div>
<div class="social-links gen">
<div class="link">
<a href="#About"><img src="/images/icon-facebook.svg" alt="Facebook"></a>
<a href="#Careers"><img src="/images/icon-instagram.svg" alt="Instagram"></a>
<a href="#Events"><img src="/images/icon-pinterest.svg" alt="PinInterest"></a>
<a href="#Products"><img src="/images/icon-twitter.svg" alt="Twitter"></a>
</div>
<div class="copyright">
<p>© <span id="date">2021</span> Poopstudios. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Fatima Zahir</a>.
</div>
<script src="/app.js"></script>
</body>
</html>