-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanking.html
More file actions
29 lines (27 loc) · 810 Bytes
/
banking.html
File metadata and controls
29 lines (27 loc) · 810 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/banking.css">
</head>
<body>
<div class="login-form">
<h1>Your Balance</h1>
<div class="content">
<h3>Mastercard: <span class="plus">$700</span>
</h3>
<h3>Vise: <span class="minus">-$110
</span></h3>
</div>
<div class="action">
<button>New transaction</button>
<button>Log out</button>
</div>
</div>
<script src="js/banking.js"></script>
</body>
</html>