Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Inventory Management</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="company-name">IAC Electrical Pvt. Ltd.</div> | |
| <h1>Inventory Management</h1> | |
| <h2>Raw Materials Item Details</h2> | |
| <div class="form-group"> | |
| <label for="item-description">Item Description</label> | |
| <textarea id="item-description" readonly></textarea> | |
| </div> | |
| <div class="form-group"> | |
| <label for="item-code">Item Code</label> | |
| <input type="text" id="item-code" readonly> | |
| </div> | |
| <div class="form-group"> | |
| <label for="current-balance">Current Balance</label> | |
| <input type="number" id="current-balance" readonly> | |
| </div> | |
| <div class="form-group"> | |
| <label for="unit">Unit</label> | |
| <input type="text" id="unit" readonly> | |
| </div> | |
| <a id="google-form-link" href="#" class="link" target="_blank">In-Out Form</a> | |
| </div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> | |