-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (120 loc) · 3.79 KB
/
index.html
File metadata and controls
170 lines (120 loc) · 3.79 KB
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
160
161
162
163
164
165
166
167
168
169
170
<!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="stylesheet" href="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: 15px;
color: white;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<div role="main">
<div class="header">
<div class="header-inner">
<div class="logo">
<img src="images/logo.svg" alt="logo">
</div>
<div class="menu">
<span><a href="#">About</a></span>
<span><a href="#">Careers</a></span>
<span><a href="#">Events</a></span>
<span><a href="#">Products</a></span>
<span><a href="#">Support</a></span>
</div>
</div>
<div class="immersive-experiences">
<p>Immersive experiences that deliver</p>
</div>
</div>
<div class="intro">
<div class="intro-img">
<img src="https://dl.dropbox.com/s/ji5dtl9s75id2rq/image-interactive.jpg?dl=0" alt="intro-img">
</div>
<div class="intro-content">
<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>
</div>
<div class="grid-heading">
<div class="grid-heading-inner">
<h2>OUR CREATIONS</h2>
<button>See All</button>
</div>
</div>
<div class="grid-main">
<div class="grid-main">
<div class="grid-container">
<div class="g-img1">
<h3>DEEP WATER</h3>
</div>
<div class="g-img2">
<h3>NIGHT ARCADE</h3>
</div>
<div class="g-img3">
<h3>SOCCER TEAM VR</h3>
</div>
<div class="g-img4">
<h3>THE GRID</h3>
</div>
<div class="g-img5">
<h3>FROM UP ABOVE VR</h3>
</div>
<div class="g-img6">
<h3>POCKET BOREALIS</h3>
</div>
<div class="g-img7">
<h3>THE CURIOSITY</h3>
</div>
<div class="g-img8">
<h3>MAKE IT FISHEYE</h3>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footer-inner">
<div class="left">
<div class="f-logo">
<img src="images/logo.svg" alt="logo">
</div>
<div class="f-menu">
<span><a href="#">About</a></span>
<span><a href="#">Careers</a></span>
<span><a href="#">Events</a></span>
<span><a href="#">Products</a></span>
<span><a href="#">Support</a></span>
</div>
</div>
<div class="right">
<div class="social-micons">
<span><img src="images/icon-facebook.svg" alt="facebook-icon"></span>
<span><img src="images/icon-twitter.svg" alt="twitter-icon"></span>
<span><img src="images/icon-pinterest.svg" alt="pinteres-icon"></span>
<span><img src="images/icon-instagram.svg" alt="instagram-icon"></span>
</div>
<div class="reserved">
<p>© 2021 Loopstudios.<br>Challenge by <a href="https://www.frontendmentor.io?ref=challenge"
target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/iRankush/" target="_blank">Rankush</a>.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<!-- Coded by Rankush -->