Skip to content
Permalink
e51f95e135
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (16 sloc) 470 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Inventory</title>
<script src="cars.js" defer></script>
</head>
<body>
<h1>Car Inventory</h1>
<label for="choice">Choose action: (T: Create, N: Read, M: Update, B: Delete)</label>
<input type="text" id="choice">
<button onclick="act()">Go</button>
<ul id="carList"></ul>
</body>
</html>