-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (40 loc) · 1.64 KB
/
index.html
File metadata and controls
47 lines (40 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dhooond - Your Search Engine</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
}
</style>
</head>
<body class="bg-[#171a18] min-h-screen flex flex-col justify-center items-center">
<div class="container mx-auto px-4 text-center">
<logo-component class="mb-8"></logo-component>
<search-bar-component class="mb-8"></search-bar-component>
<div class="mb-8">
<button
class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded-full transition duration-300 ease-in-out transform hover:scale-105">
Launching Soon
</button>
</div>
<p class="text-gray-100 text-lg mb-8">
Dhooonde duniya ki sari inphormation hinglish mein
</p>
</div>
<div class="self-center fixed bottom-5">
<span class=" bottom-3 items-center text-center content-center text-white">Powered by
<a href="https://incubatorop.com/" class="text-blue-500" target="_blank">
incubatorOP
</a>
</span>
</div>
<script src="components/logo-component.js"></script>
<script src="components/search-bar-component.js"></script>
</body>
</html>