-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (75 loc) · 4.67 KB
/
Copy pathindex.html
File metadata and controls
91 lines (75 loc) · 4.67 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
<!-- Developed By Mohamed Sameer S -->
<!-- Started Development on 15 August 2025 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="./src/output.css"> -->
<link rel="stylesheet" href="./icons/css/all.css">
<link rel="stylesheet" href="./src/style.css">
<!-- GSAP -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<!-- Tailwind CDN (For development only) -->
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<title>Cinema Focus</title>
</head>
<body class="m-0 p-0 box-border">
<!-- Header -->
<div id="mobile-menu"
class="h-20 flex justify-between absolute items-center p-5 w-full border-b border-gray-300 shadow-md top-0 bg-white z-50 fixed">
<img src="./assets/logo.png" alt="Cinema Focus" class="h-15 w-50" />
<div class="group flex gap-10 text-[12px] uppercase transition-colors mr-5 max-md:hidden"
style="font-family: 'DM Sans', HelveticaNeue-Light, 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: 700;">
<button class="hover:text-red-500 duration-300 cursor-pointer">HOME</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">ABOUT</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">EXPLORE</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">NEW ARRIVALS</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">DEALERS</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">CONTACT</button>
</div>
<div id="menubtn"
class="group min-lg:hidden font-bold border border-gray-200 shadow-md hover:shadow-xl hover:bg-gray-300 transition-all duration-300 hover:border-gray-300 p-4 h-6 w-4 rounded-full flex justify-center items-center cursor-pointer">
<i class="fas fa-bars text-sm text-black group-hover:text-red-500 transition-colors duration-300"></i>
</div>
</div>
<div class="h-20"></div>
<div id="menu" class="group flex flex-col absolute w-full bg-gray-400 top-20 z-50 p-4 gap-5 text-white fixed py-5 "
style="font-family: 'DM Sans', HelveticaNeue-Light, 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: 700; height: calc(100vh - 80px);">
<button class="hover:text-red-500 duration-300 cursor-pointer ">HOME</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">ABOUT</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">EXPLORE</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">NEW ARRIVALS</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">DEALERS</button>
<button class="hover:text-red-500 duration-300 cursor-pointer">CONTACT</button>
<button class="absolute x-40 top-4 right-5 hover:text-red-400 focus:text-red-400" id="closeMenu">
<div
class="group min-lg:hidden bg-gray-300 font-bold border border-gray-200 shadow-md hover:shadow-xl hover:bg-gray-300 transition-all duration-300 hover:border-gray-300 p-4 h-6 w-4 rounded-full flex justify-center items-center cursor-pointer">
<i class="fas fa-close text-sm text-black group-hover:text-red-500 transition-colors duration-300 "></i>
</div>
</button>
</div>
<!-- Sections -->
<div class="flex justify-center items-center bg-gray-300" style="height: calc(100vh - 80px);">
<h1 class="text-7xl font-bold">HOME</h1>
</div>
<div class="flex justify-center items-center bg-amber-300" style="height: calc(100vh - 80px);">
<h1 class="text-7xl font-bold">ABOUT</h1>
</div>
<div class="flex justify-center items-center bg-blue-300" style="height: calc(100vh - 80px);">
<h1 class="text-7xl font-bold">EXPLORE</h1>
</div>
<div class="flex justify-center items-center bg-red-300" style="height: calc(100vh - 80px);">
<h1 class="text-7xl font-bold">NEW ARRIVALS</h1>
</div>
<div class="flex justify-center items-center bg-green-300" style="height: calc(100vh - 80px);">
<h1 class="text-7xl font-bold">PHOTOS</h1>
</div>
<div class="flex justify-center items-center bg-yellow-300" style="height: calc(100vh - 80px);">
<h1 class="text-7xl font-bold">CONTACT</h1>
</div>
<!-- Scripts -->
<script src="js/menuAnimation.js"></script>
<script src="js/app.js"></script>
</body>
</html>