Commit 678e56e0 by farama

Upload New File

parent 78667d9d
Showing with 48 additions and 0 deletions
<html>
<head>
<title>
Shopping list
</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" type="text/javascript" async></script>
</head>
<body onload="drawTable()">
<header>
<div class="container">
<h1 id="header-text">List</h1>
</div>
</header>
<main>
<div class="container">
<div id="Input-products">
<label for="Product">Product:</label>
<input type="text" id="product">
<label for="Quantity">Quantity:</label>
<input type="number" id="quantity">
<input type = "button" value = "Add to list" onclick = "getInputValue()">
</div>
<div id="Table">
<table id="Table1">
<tr>
<th>No.</th>
<th>Product</th>
<th>Quantity</th>
</tr>
</table>
</div>
</div>
</main>
</div>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment