-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanking.html
52 lines (48 loc) · 2.3 KB
/
banking.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
<!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>Banking Page</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<header>
<h1 class="text-5xl text-center mt-10">Let's get some <span class="font-bold text-purple-700">Moooney</span>!!!</h1>
</header>
<main class="w-3/4 mx-auto ">
<section class="pt-12">
<div class="grid grid-cols-3 gap-6 text-white">
<div class="bg-blue-300 p-12 rounded" >
<h2 class="text-2xl">Deposit</h2>
<h3 class="text-4xl ">$<span id="deposit-total">000</span> </h3>
</div>
<div class="bg-green-300 p-12 rounded" >
<h2 class="text-2xl">Withdraw</h2>
<h3 class="text-4xl ">$<span id="withdraw-total">000</span></h3>
</div>
<div class="bg-yellow-300 p-12 rounded" >
<h2 class="text-2xl">Balance</h2>
<h3 class="text-4xl ">$<span id="total-balance">1240</span></h3>
</div>
</div>
</section>
<section class="mt-8">
<div class="grid grid-cols-2 gap-4">
<div class=" bg-red-100 p-12 rounded">
<h2 class="text-2xl">Plasec Deposit</h2>
<input id="deposit-input" class="border border-gray-400 block w-3/4 rounded px-2 mb-4" type="text" placeholder="$ Amount you want Deposit">
<button id="deposit-button" class="bg-orange-400 px-4 py-2 text-white font-semibold rounded-lg text-lg">Deposit</button>
</div>
<div class=" bg-purple-100 p-12 rounded">
<h2 class="text-2xl">Plasec Withdraw</h2>
<input id="Withdraw-input" class="border border-gray-400 block w-3/4 rounded px-2 mb-4" type="text" placeholder="$ Amount you want Withdraw">
<button id="Withdraw-button" class="bg-orange-400 px-4 py-2 text-white font-semibold rounded-lg text-lg">Withdraw</button>
</div>
</div>
</section>
</main>
<script src="js/banking.js"></script>
</body>
</html>