<think>
First, the user said: "Make a website this Plate rs100 Bowl rs30 Glass rs40 Tissue rs20 Toilet roll rs100"
</think>```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Household Items Store</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; }
h1 { color: #333; }
ul { list-style-type: none; padding: 0; }
li { margin: 10px 0; }
</style>
</head>
<body>
<h1>Available Items</h1>
<ul>
<li>Plate - Rs100</li>
<li>Bowl - Rs30</li>
<li>Glass - Rs40</li>
<li>Tissue - Rs20</li>
<li>Toilet roll - Rs100</li>
</ul>
</body>
</html>
Comments
Post a Comment