-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.22 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<img id="logo" src="images/money-boat.png" alt="logo">
<h1>Liquid Bank</h1>
</header>
<main>
<section class="checking-acc">
<h2>Checking</h2>
<p>Your balance is ... </p>
<div class="checking-result">$00.00</div>
<input type="number" class="checking-input" placeholder="give me money">
<div class="button-div">
<button id="checking-deposit">Deposit</button>
<button id="checking-withdraw">Withdraw</button>
<button id="checking-transfer">Transfer</button>
</div>
</section>
<section class="savings-acc">
<h2>Savings</h2>
<p>Your balance is ... </p>
<div class="savings-result">$00.00</div>
<input type="number" class="savings-input" placeholder="more is more">
<div class="button-div">
<button id="savings-deposit">Deposit</button>
<button id="savings-transfer">Transfer</button>
</div>
</section>
</main>
<span id="message"></span>
</div>
<script src="app.js"></script>
</body>
</html>