-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (158 loc) · 5.77 KB
/
index.html
File metadata and controls
159 lines (158 loc) · 5.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./header.css">
<link rel="stylesheet" href="./info-section.css">
<link rel="stylesheet" href="./grid-section.css">
<link rel="stylesheet" href="./footer.css">
<script
src="https://kit.fontawesome.com/a87730ea99.js"
crossorigin="anonymous"
></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VR Website</title>
</head>
<body>
<div class="mobile-nav" id="mobile-nav" >
<div class="mobile-header">
<img src="./images/logo.svg" class="logo" alt="logo" />
<div class="menu-close" onclick="toggleNav()">
<button>
<i class="fa fa-close"></i>
</button>
</div>
</div>
<a href="#" class="mob-nav-item">Home</a
><a href="" class="mob-nav-item">About</a
><a href="" class="mob-nav-item">Services</a
><a href="" class="mob-nav-item">Contact</a>
</div>
<header class="header-section">
<nav class="navbar">
<img src="./images/logo.svg" alt="VR logo" />
<div class="nav-items">
<a href="#">About</a>
<a href="#">Career</a>
<a href="#">Events</a>
<a href="#">Products</a>
<a href="#">Support</a>
</div>
<div class="ham-btn" onclick="toggleNav()">
<button>
<i class="fa fa-reorder"></i>
</button>
</div>
</nav>
<h1 class="hero-heading">
IMMERSIVE<br />
EXPERIENCES<br />
THAT<br />
DELIVER
</h1>
</header>
<div class="container">
<div class="info-section">
<div class="info-img-container">
<img src="./images/desktop/image-interactive.jpg" alt="info-img" />
</div>
<div class="info-img-container-mobile">
<img src="./images/mobile/image-interactive.jpg" alt="innfo-img" />
</div>
<div class="info-text-container">
<h1>
THE LEADER IN<br />
INTERACTIVE VR
</h1>
<p>
Found in 2011, Loopstudios has been producing word-class virtual
reality projects for some of the best companies around the globe.
Our awar-winning creations have transformed businesses through
digital experiences that bind to their brand.
</p>
</div>
</div>
<div class="creations">
<h1>OUR CREATIONS</h1>
<button>SEE ALL</button>
</div>
<div class="grid-section">
<h3 class="grid-item grid-item-1">DEEP<br/>EARTH</h3>
<h3 class="grid-item grid-item-2">NIGHT<br/>ARCADE</h3>
<h3 class="grid-item grid-item-3">SOCCER<br/>TEAM VR</h3>
<h3 class="grid-item grid-item-4">THE<br/>GRID</h3>
<h3 class="grid-item grid-item-5">FROM UP<br/>ABOVE VR</h3>
<h3 class="grid-item grid-item-6">POCKET<br/>BOREALIS</h3>
<h3 class="grid-item grid-item-7">THE<br/>CURIOSITY</h3>
<h3 class="grid-item grid-item-8">MAKE IT<br/>WISHEYE</h>
</div>
<div class="grid-section-mobile">
<h3 class="grid-item-mobile grid-item-mobile-1">DEEP<br/>EARTH</h3>
<h3 class="grid-item-mobile grid-item-mobile-2">NIGHT<br/>ARCADE</h3>
<h3 class="grid-item-mobile grid-item-mobile-3">SOCCER<br/>TEAM VR</h3>
<h3 class="grid-item-mobile grid-item-mobile-4">THE<br/>GRID</h3>
<h3 class="grid-item-mobile grid-item-mobile-5">FROM UP<br/>ABOVE VR</h3>
<h3 class="grid-item-mobile grid-item-mobile-6">POCKET<br/>BOREALIS</h3>
<h3 class="grid-item-mobile grid-item-mobile-7">THE<br/>CURIOSITY</h3>
<h3 class="grid-item-mobile grid-item-mobile-8">MAKE IT<br/>WISHEYE</h>
</div>
<div class="creation-btn-mobile">
<button>SEE ALL</button>
</div>
</div>
<footer class="footer-container">
<div class="flex-row1-center">
<img src="./images/logo.svg" class="footer-logo" />
<div class="social-section">
<a href="">
<img src="./images/icon-facebook.svg" />
</a>
<a href=""><img src="./images/icon-instagram.svg" /></a>
<a href=""><img src="./images/icon-twitter.svg" /></a>
<a href=""> <img src="./images/icon-pinterest.svg" /></a>
</div>
</div>
<div class="flex-row2-center">
<div class="footer-menu">
<a href="">About</a>
<a href="">Careers</a>
<a href="">Events</a>
<a href="">Products</a>
<a href="">Support</a>
</div>
<p class="copyright">©Made by Bhavin Patel</p>
</div>
</footer>
<div class="mobile-footer">
<div class="footer-logo-mobile"><img src="./images/logo.svg" class="footer-logo" /></div>
<div class="footer-menu-mobile">
<a href="">About</a>
<a href="">Careers</a>
<a href="">Events</a>
<a href="">Products</a>
<a href="">Support</a>
</div>
<div class="footer-icons">
<a href="">
<img src="./images/icon-facebook.svg" />
</a>
<a href=""><img src="./images/icon-instagram.svg" /></a>
<a href=""><img src="./images/icon-twitter.svg" /></a>
<a href=""> <img src="./images/icon-pinterest.svg" /></a>
</div>
<p class="copyright-footer">© Made by Bhavin Patel</p>
</div>
<script>
function toggleNav(){
const ele= document.getElementById('mobile-nav')
if(ele.classList.contains('mobile-nav-open')){
ele.classList.remove('mobile-nav-open')
}else{
ele.classList.add('mobile-nav-open')
}
}
</script>
</body>
</html>