23 lines
644 B
HTML
23 lines
644 B
HTML
<!DOCTYPE HTML>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Grocery Splitter</title>
|
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<h1>Grocery Splitter</h1>
|
|
<ul id="items"></ul>
|
|
<input id="add" type="button" value="Add" />
|
|
Tax: <input type="text" id="tax" name="tax" value="6.25" />%
|
|
<div id="output">
|
|
<p>The bill's total was $<span id="total">0.00</span>.</p>
|
|
<ul id="debts">
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" src="js/index.js"></script>
|
|
</body>
|
|
</html>
|