Skip to main content

Posts

Showing posts from December, 2025
```html Household Items Store Available Items Plate - Rs100 Bowl - Rs30 Glass - Rs40 Tissue - Rs20 Toilet roll - Rs100
 <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>...