-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="shortcut icon" href="./assets/images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./assets/css/style.css">
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
</head>
<body>
<header class="sticky top-0 bg-slate-800 py-3 w-screen z-10 flex justify-center">
<div class="group flex justify-center w-2/3 md:w-1/3">
<img class="h-8 md:h-10" src="./assets/images/less.png" alt="">
<div class="overflow-hidden">
<h3 class="font-mono text-2xl md:text-3xl text-white me-1 ml-[-250px] md:ml-[-320px] group-hover:ml-0 duration-300">swagoto</h3>
</div>
<img class="h-8 md:h-10 ml-[-7px]" src="./assets/images/greater.png" alt="">
</div>
</header>
<section class="group fixed z-0 bg-black flex justify-center align-middle w-screen h-[250px] md:h-[448px]">
<div class="flex justify-end">
<img class="md:hidden block" src="./assets/images/mobile_banner.jpeg" alt="...">
<img class="hidden md:block" src="./assets/images/banner.jpeg" alt="...">
</div>
</section>
<section class="group relative top-0 h-[250px] md:h-[448px] w-screen">
<div class="w-full bg-black bg-opacity-90 group-hover:bg-opacity-0 duration-500 top-0 flex justify-center align-middle h-full m-auto">
<div class="m-auto mt-[50px] md:mt-[85px] w-2/3">
<h2 class=" text-white text-[28px] md:text-[70px] blur-0 group-hover:blur-2xl group-hover:opacity-50 duration-500 font-bold text-center font-mono">Welcome to World of Web Wonders!</h2>
</div>
</div>
</section>
<section class="relative bg-slate-800 h-[300px] w-screen">
</section>
</body>
</html>