Posts

Showing posts from March, 2026

nr_kavali@rediffmail.com

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>Local Storage Data Entry & Search</title> </head> <body>     <h1>Data Entry</h1>     <form id="dataEntryForm">         <label for="name">Name:</label>         <input type="text" id="name" required>         <label for="value">Value:</label>         <input type="text" id="value" required>         <button type="submit">Save Data</button>     </form>     <hr>     <h1>Search Data</h1>     <input type="text" id="searchInput" placeholder="Search by name...">     <button onclick="searchData()">Search</button>     <button onclick="displayAllData()">Displ...