-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
63 lines (57 loc) · 3.08 KB
/
home.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
62
63
<!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>Matir Bank | Online Bank</title>
<link rel="shortcut icon" href="https://cdn-icons.flaticon.com/png/512/2246/premium/2246747.png?token=exp=1646916142~hmac=6f8605a39295ad67fef0e98ec07cf25f" type="image/x-icon">
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<!-- <h1>Matir Bank</h1> -->
<header>
<marquee class="mx-auto text-center" width="80%" direction="left">Welcome to Matir Bank</marquee>
<h1 class="text-5xl font-bold text-center mt-10 mb-8">Your <span class="text-orange-500">Money</span> Status</h1>
</header>
<main class="w-full md:w-3/4 mx-auto">
<!-- Money Status -->
<section>
<div class="grid grid-cols-3 gap-5">
<div class="bg-blue-400 p-8 rounded">
<h2 class="text-2xl text-white">Deposit</h2>
<h2 class="text-4xl text-white font-bold">$ <span id="deposit">00</span></h2>
</div>
<div class="bg-green-400 p-8 rounded">
<h2 class="text-2xl text-white">Withdraw</h2>
<h2 class="text-4xl text-white font-bold">$ <span id="withdraw">00</span></h2>
</div>
<div class="bg-purple-400 p-8 rounded">
<h2 class="text-2xl text-white">Balance</h2>
<h2 class="text-4xl text-white font-bold">$ <span id="balance">1500</span> </h2>
</div>
</div>
</section>
<!-- Input -->
<section>
<div class="grid grid-cols-2 md:grid-cols-2 gap-5 my-5">
<!-- Deposit -->
<div class="deposit-input-container p-10 bg-green-100 rounded-lg">
<h2 class="text-3xl font-bold">Deposit Amount</h2>
<input id="deposit-input" class="block w-full p-2 py-3 text-3xl my-6 focus:outline-none focus:ring focus:ring-green-400 hover:ring hover:ring-green-400 rounded" type="text" placeholder="$ Enter deposit amount">
<button id="deposit-button" class="text-1xl font-bold text-white bg-green-500 px-6 py-3 rounded hover:bg-green-600">Deposit</button>
</div>
<!-- Withdraw -->
<div class="withdraw-input-container p-10 bg-rose-100 rounded-lg">
<h2 class="text-3xl font-bold">Withdraw Amount</h2>
<input id="withdraw-input" class="block w-full p-2 py-3 text-3xl my-6 focus:outline-none focus:ring focus:ring-rose-400 hover:ring hover:ring-rose-400 rounded" type="text" placeholder="$ Enter withdraw amount">
<button id="withdraw-button" class="text-1xl font-bold text-white bg-rose-500 px-6 py-3 rounded hover:bg-rose-600">Withdraw</button>
</div>
</div>
</section>
</main>
<!-- Javascript -->
<script src="JS/home.js"></script>
</body>
</html>