Created
October 3, 2013 00:15
-
-
Save featherart/6802588 to your computer and use it in GitHub Desktop.
ATM homework HTML document
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>ATM</title> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="atm.css"> | |
<script src="atm.js"></script> | |
</head> | |
<body> | |
<div id="content"> | |
<div id="nav"> | |
<div id="logo"><img src="ga.png" alt="Bank of GA"/></div> | |
<div id="title">Bank of GA</div> | |
</div> | |
<div class="account" id="checkingAccount"> | |
<h1>Checking</h1> | |
<div class="balance" id="balance1">$0</div> | |
<input id="checkingAmount" type="text" placeholder="enter an amount" /> | |
<input id="checkingDeposit" type="button" value="Deposit" /> | |
<input id="checkingWithdraw" type="button" value="Withdraw" /> | |
</div> | |
<div class="account" id="savingsAccount"> | |
<h1>Savings</h1> | |
<div class="balance" id="balance2">$0</div> | |
<input id="savingsAmount" type="text" placeholder="enter an amount" /> | |
<input id="savingsDeposit" type="button" value="Deposit" /> | |
<input id="savingsWithdraw" type="button" value="Withdraw" /> | |
</div> | |
<div class="clear"></div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment