Add Week-01 and Week-02 content

This commit is contained in:
2026-02-10 11:31:02 +05:30
parent 8ba6ddffc4
commit 0957777134
18 changed files with 820 additions and 0 deletions

22
Week-01/Day_05/index.html Normal file
View File

@@ -0,0 +1,22 @@
<!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>