-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (41 loc) · 1.54 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
<!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">
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<title>Document</title>
</head>
<body>
<!-- Hero Section -->
<section class="flex flex-col min-h-screen bg-slate-800 text-white bg-center bg-cover bg-blend-overlay bg-fixed bg-black/30" style="background-image: url('https://source.unsplash.com/random/')">
<!-- Navbar -->
<div class="flex items-center h-20">
<!-- Navbar Container -->
<div class="mx-auto relative px-5 max-w-screen-xl w-full flex items-center justify-end">
<!-- Navbar Logo -->
<div class="text-4xl font-light uppercase absolute left-1/2 top-1/2 -translate-y-1/2 -translate-x-1/2">
My Site
</div>
<!-- Navbar Menu -->
<nav class="flex gap-5">
<a>Home</a>
<a>Login</a>
<a>Signup</a>
</nav>
</div>
</div>
<!-- Hero Section Content -->
<div class="flex-1 flex items-center">
<div class="text-center mx-auto">
<h1 class="text-6xl font-semibold">Welcome to my site!</h1>
<p class="font-light text-3xl mt-5">The land of opportunity.</p>
<a class="px-5 py-2 inline-block bg-cyan-500 text-white hover:bg-cyan-400 transition-colors mt-10" href="">Get Started</a>
</div>
</div>
</section>
<section class="bg-black min-h-screen"></section>
</body>
</html>