22 lines
600 B
HTML
22 lines
600 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Basic JS Task - Week 1 Day 5</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h1>Gadget Store Inventory</h1>
|
|
<p>Click the button below to process the JSON data and calculate discounts.</p>
|
|
|
|
<button id="load-btn">Load Inventory</button>
|
|
|
|
<div id="product-container" class="product-grid"></div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |