-
Notifications
You must be signed in to change notification settings - Fork 447
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (22 loc) · 821 Bytes
/
index.html
File metadata and controls
25 lines (22 loc) · 821 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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bank Account</title>
<script src="html.js"></script>
</head>
<body>
<div class="container">
<h1>Welcome to the Bank of Brighton</h1>
<p>Please chose one of the following items:</p>
<form action="">
<select id="bank-actions" name="bank actions">
<option value="select" class="select">Select One</option>
<option value="check" class="check">Check Balance</option>
<option value="deposit" class="deposit">Deposit Money</option>
<option value="withdraw" class="withdraw">Withdraw Money</option>
<option value="exit" class="exit">Exit</option>
</select>
</form>
<p id="amount" >$ </p>
</div
</body>