Deposit.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bank Account Deposit</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Bank Account</h1>
<div class="balance">
<h2>Account Balance: $<span id="balance">0.00</span></h2>
</div>
<div class="deposit-form">
<input type="number" id="deposit-amount" placeholder="Enter amount to deposit">
<button onclick="depositMoney()">Deposit</button>
</div>
<div class="transaction-history">
<h2>Transaction History</h2>
<ul id="transaction-list">
<!-- Transactions will be appended here -->
</ul>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>