-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent2.html
More file actions
45 lines (40 loc) · 1.88 KB
/
event2.html
File metadata and controls
45 lines (40 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intractive Webpage</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-sky-100">
<div class="flex flex-row justify-between ">
<h2 class="text-cyan-500 text-2xl font-bold m-4 p-4">Intract</h2>
<nav class="space-x-4 mt-4 mr-6 p-4">
<a href="#">Home</a>
<a href="#">Features</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</div>
<div class="flex flex-row justify-between ">
<div class="">
<h1 class="text-6xl font-bold pl-8 mt-10"><span class="bg-gradient-to-r from-sky-400 to-teal-400 bg-clip-text text-transparent">Interactive</span> Web <br> Experience</h1>
<p class="text-xl text-gray-600 pl-8 mt-8">Discover a Beautifully crafted webpage with smooth animations, <br>
dark mode, and responsive design</p>
<div class="space-x-4 ml-4 p-6">
<button class="bg-blue-800 text-white p-3 rounded-xl"> Get Started </button>
<button class="bg-white text-blue-800 p-4 rounded-xl"> Learn More </button>
</div>
</div>
<div class="mr-[250px] mt-32">
<div class="bg-white h-80 w-70 p-10 rounded-xl text-center">
<div class="space-y-4">
<img src="logo.jpg" alt="img" height="100" width="100" class="mx-auto" >
<h3 class="text-xl font-bold">Hello There!</h3>
<p class="text-l text-gray-500">Welcome to this Interactive <br>Demo</p>
</div>
</div>
</div>
</div>
</body>
</html>