-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (50 loc) · 2.7 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
51
52
53
54
55
56
57
58
59
60
61
<!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">
<title>Billionaire Diary</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<header class="bg-slate-800 p-8">
<nav class="mt-6 flex items-center content-center place-content-around">
<img src="images/logo/logo.png" class="navabar-center" alt="" srcset="">
<img style="height: 60px;" src="images/logo/logo1.png" class="text-xs" alt="" srcset="">
</nav>
</header>
<main class=" bg-gray-300">
<section>
<div class="mt-0 w-50 flex items-center justify-center gap-x-3">
<input type="text" id="search-field" placeholder="Search By Industry" class="mt-3 input input-bordered input-error w-full max-w-xs" />
<div id="btn-search" class="mt-2 btn btn-primary">Search</div>
</div>
</section>
<!-- btn group section -->
<section >
<div class="mt-4 btn-group btn-group-horizontal">
<h1 class="text-black font-semibold text-3xl text-center mb-4">Billionaire <br> Diary</h1>
<button class="bg-info-content p-5 text-white mx-4 rounded-lg mb-2">Add a user</button>
<button class="bg-info-content p-5 text-white mx-4 rounded-lg mb-2">Double Money</button>
<button class="bg-info-content p-5 text-white mx-4 rounded-lg mb-2">Sort By Rank</button>
<button class="bg-info-content p-5 text-white mx-4 rounded-lg mb-2">Calculate Entire Wealth</button>
<button class="bg-info-content p-5 text-white mx-4 rounded-lg mb-2" id="btn-show-all">Show All Billionaries</button>
<button class="bg-info-content p-5 text-white mx-4 rounded-lg mb-2">Richest By Industry</button>
<button class="bg-info-content p-5 text-white mx-4 rounded-lg mb-2">Richest By States</button>
</div>
<!-- loader -->
<div id="loader" class="flex items-center justify-center mt-6 invisible">
<progress class="progress w-56 "></progress>
</div>
</section>
<!-- display all person section -->
<section class="show-section">
<div id="billionaire-container" class="container grid gap-y-5 gap-x-5 mt-12 grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
</div>
</section>
</main>
<script src="js/app.js"></script>
</body>
</html>