Skip to content

Instantly share code, notes, and snippets.

@mchayapol
Created September 22, 2015 02:48
Show Gist options
  • Save mchayapol/7cc241953a6482cf4305 to your computer and use it in GitHub Desktop.
Save mchayapol/7cc241953a6482cf4305 to your computer and use it in GitHub Desktop.
Cash Register Skeleton Code
<!DOCTYPE html>
<html>
<head>
<title>Cash Register</title>
<script>
</script>
</head>
<body>
<table>
<tr>
<td>Purchase</td>
<td><input type="text" id="purchase" /></td>
</tr>
<tr>
<td>Cash</td>
<td><input type="text" id="cash" /></td>
</tr>
<tr>
<td>Change</td>
<td><input type="text" id="change" /></td>
</tr>
<tr>
<td colspan="2">
<button>Calculate</button>
<button>Clear</button>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment