In These Blog i provide technology notes for Engineering students and UPSC aspirants also technology overall information

Breaking

Wednesday, 8 March 2023

wad 2nd practical html file with screenshots

 
 
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Local Storage</title>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div id="formDiv">
<form id="carForm">
<h1>Local Storage</h1>
<label for="carBrand" >Car</label>
<input type="text" id="carBrand" placeholder="Car brand" required autofocus><br>
<label for="carPrice" >Price</label>
<input type="text" id="carPrice" placeholder="Price" required><br>
<label for="key" >Key</label>
<input type="text" id="key" placeholder="Key" required><br>
<button type="submit">Store Records</button>
</form>
<br>
<label for="retrieveKey" >Enter Key to retrieve item</label>
<input type="text" id="retrieveKey" placeholder="retrieveKey" required><br>
<button id="retrieveButton">Retrieve records</button>
<br>
<div id="retrieve"></div>
<br>
<label for="removeKey" >Enter Key to delete item</label>
<input type="text" id="removeKey" placeholder="removeKey" required><br>
<button id="removeButton">Remove record</button>
<br>
<button id="clearButton">Clear all records</button>
</div>
</body>
</html>






No comments:

Post a Comment