-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
166 lines (162 loc) · 6.73 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
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Alata&family=Josefin+Sans:wght@300&display=swap"
rel="stylesheet"
/>
<script src="js/script.js" defer></script>
<link rel="stylesheet" href="css/style.css" />
<title>Simple Tailwind Starter</title>
</head>
<body>
<!-- Start Hero Section -->
<section id="hero">
<div class="container max-w-6xl mx-auto px-6 py-12">
<!-- navbar -->
<nav class="flex items-center justify-between font-bold text-white">
<img src="./images/logo.svg" alt="">
<div class="hidden h-10 font-alata md:flex md:space-x-8">
<div class="group">
<a href="#">About</a>
<div class="nav-link"></div>
</div>
<div class="group">
<a href="#">Careers</a>
<div class="nav-link"></div>
</div>
<div class="group">
<a href="#">Events</a>
<div class="nav-link"></div>
</div>
<div class="group">
<a href="#">Products</a>
<div class="nav-link"></div>
</div>
<div class="group">
<a href="#">Support</a>
<div class="nav-link"></div>
</div>
</div>
<!-- mobile menu -->
<div class="md:hidden">
<button id="menu-btn" type="button" class="z-40 block hamburger focus:outline-none md:hidden">
<span class="hamburger-top"></span>
<span class="hamburger-middle"></span>
<span class="hamburger-bottom"></span>
</button>
</div>
</nav>
<div id="menu" class="absolute top-0 z-20 bottom-0 left-0 flex flex-col hidden self-end w-full min-h-screen py-1 pt-40 pl-12 space-y-6 text-lg text-white uppercase bg-black">
<a href="" class="hover:text-pink-500">About</a>
<a href="" class="hover:text-pink-500">Careers</a>
<a href="" class="hover:text-pink-500">Events</a>
<a href="" class="hover:text-pink-500">Products</a>
<a href="" class="hover:text-pink-500">Support</a>
</div>
<div class="max-w-lg my-32 p-4 font-sans text-4xl text-white uppercase border-2 md:p-10 md:text-6xl">
Impressive experiences that deliver
</div>
</div>
</section>
<!-- End Hero Section -->
<!-- Start Feature Section -->
<section id="feature">
<div class="relative container flex flex-col max-w-6xl mx-auto my-32 px-6 text-gray-900 md:flex-row md:px-0">
<img src="./images/desktop/image-interactive.jpg" alt="">
<div class="md:absolute top-48 pr-0 md:right-0 md:py-20 md:pl-20 bg-white">
<h2 class="mt-10 mb-12 font-sans max-w-lg mx-auto text-4xl text-center text-gray-900 uppercase md:text-5xl md:mt-0 md:text-left">
The Leader in interactive vr
</h2>
<p class="max-w-md mx-auto text-center md:text-left">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Animi molestiae distinctio officiis omnis quos, accusantium sunt reiciendis officia. Et, nulla adipisci. Recusandae nesciunt esse similique neque veniam ea magnam quas.
</p>
</div>
</div>
</section>
<!-- End Feature Section -->
<!-- Start Creations Section -->
<section id="creation">
<div class="container max-w-6xl mx-auto my-32 px-6 text-gray-900">
<div class="flex justify-center items-center mb-20 md:justify-between ">
<h2 class="text-4xl uppercase text-center md:text-left md:text-5xl">Our creations</h2>
<button class="hidden btn md:block">see all</button>
</div>
<!-- items -->
<div class="item-container container-1 ">
<!-- <div class="group relative overflow-hidden md:w-1/4">
<img src="images/desktop/image-deep-earth.jpg" alt="" class="item-desktop-img">
<img src="images/mobile/image-deep-earth.jpg" alt="" class="item-mobile-img">
<div class="item-gradient"></div>
<h5 class="item-content">Deep earth</h5>
</div> -->
</div>
<div class="item-container container-2 mt-10 ">
</div>
<button class="btn mt-10 w-full md:hidden">see all</button>
</div>
</section>
<!-- End Creations Section -->
<!-- Start footer -->
<footer id="footer" class="bg-black text-white">
<div class="container mx-w-6xl mx-auto py-10">
<div class="flex flex-col items-center mb-8 space-y-6 md:flex-row md:space-y-0 md:justify-between md:items-start">
<!-- Menus -->
<div class="flex flex-col items-center space-y-8 md:items-start md:space-y-4">
<div class="h-8">
<img src="images/logo.svg" alt="" class="w-44 md:ml-3">
</div>
<div class="flex flex-col items-center space-y-4 font-bold text-white md:flex-row md:space-y-0 md:space-x-6 md:ml-3">
<div class="h-10 group">
<a href="#">About</a>
<div class="nav-link"></div>
</div>
<div class="h-10 group">
<a href="#">Careers</a>
<div class="nav-link"></div>
</div>
<div class="h-10 group">
<a href="#">Events</a>
<div class="nav-link"></div>
</div>
<div class="h-10 group">
<a href="#">Products</a>
<div class="nav-link"></div>
</div>
<div class="h-10 group">
<a href="#">Support</a>
<div class="nav-link"></div>
</div>
</div>
</div>
<!-- Social -->
<div class="flex flex-col items-start justify-between space-y-4 text-gray-500">
<div class="flex items-center justify-center mx-auto md:mx-0 space-x-4 md:justify-end">
<div class="h-8 group">
<a href="#"><img src="images/icon-facebook.svg" class="h-6" alt=""></a>
</div>
<div class="h-8 group">
<a href="#"><img src="images/icon-instagram.svg" class="h-6" alt=""></a>
</div>
<div class="h-8 group">
<a href="#"><img src="images/icon-pinterest.svg" class="h-6" alt=""></a>
</div>
<div class="h-8 group">
<a href="#"><img src="images/icon-twitter.svg" class="h-6" alt=""></a>
</div>
</div>
<div class="font-bold">
© 2025 Loopstudios , All rights reserved
</div>
</div>
</div>
</div>
</footer>
<!-- End footer -->
</body>
</html>