-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (57 loc) · 2.33 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
<!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">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="./styles.css">
<title>Landing Page</title>
</head>
<body>
<div class="landing">
<nav class="px-4 py-6 text-white flex justify-between">
<img src="https://assets.stickpng.com/thumbs/580b57fcd9996e24bc43c521.png" class="logo h-12 mx-24" alt="">
<ul class="flex space-x-6 justify-end">
<a href=""><li class="px-4 cursor-pointer links active">Home</li></a>
<a href=""><li class="px-4 cursor-pointer links">About</li></a>
<a href=""><li class="px-4 cursor-pointer links">Event</li></a>
<a href=""><li class="px-4 cursor-pointer links">Community</li></a>
<a href=""><li class="px-4 cursor-pointer links">Contact</li></a>
</ul>
</nav>
<main>
<div class="main py-36 flex">
<div>
<div class="text-5xl headText mx-24">
EXPLORE THE<br> WORLD OF <br>TOMORROW
</div>
<div class="text-white mx-24 mt-6 subText">
BE PART OF THE WORLD'S <br>
LARGEST IMMERSIVE ART
</div>
<div class="button">
<button class="mt-8 mx-24 text-white buttonBack">
GET YOUR TICKETS
</button>
</div>
<div class="flex mx-24 mt-8 space-x-44">
<div>
<p class="text-white">www.<span class="link">vrfest</span>.com</p>
</div>
<div class="flex">
<div class="socialLogo">F</div>
<div class="socialLogo">I</div>
<div class="socialLogo">T</div>
</div>
</div>
</div>
<div class="flex ml-44">
<img class="lander"
src="https://img.freepik.com/free-vector/modern-people-doing-cultural-activities_23-2148596545.jpg?w=740&t=st=1691697476~exp=1691698076~hmac=41fc5f5cedb421b37144e0ba44f450dcf2ca797b11918ad8e19dba2ebe404969" alt="">
</div>
</div>
</main>
</div>
</body>
</html>