scandiweb-products/index.html

21 lines
435 B
HTML
Raw Normal View History

2022-07-27 06:01:33 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="index.css"/>
<title>Product List</title>
</head>
<body>
<div id="header">
<h1 id="title">Product List</h1>
<div id="buttons">
2022-07-27 11:44:08 -04:00
<a href="add-product"><button>ADD</button></a>
2022-07-27 06:01:33 -04:00
<button id="delete-product-btn">MASS DELETE</button>
</div>
</div>
2022-07-27 06:59:59 -04:00
<div id="products">
</div>
2022-07-27 06:01:33 -04:00
</body>
2022-07-27 06:59:59 -04:00
<script src="index.js"></script>
2022-07-27 06:01:33 -04:00
</html>