-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.11 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>My Cars</title>
<link rel="stylesheet" href="./style.css">
<script import="jQuery">const $ = document;</script>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body onload="readCars()">
<h1 class="heading">Add Car</h1>
<table>
<tr>
<th>Brand</th>
<th>Model</th>
<th>Year</th>
<th>Manage</th>
</tr>
<tr id="carField">
<th> <input type="text" id="brand" /> </th>
<th> <input type="text" id="model" /> </th>
<th> <input type="text" id="year" /> </th>
<th>
<button id="createBtn" onclick="createCar()">CREATE</button>
<button id="updateBtn" hidden onclick="updateCar()">UPDATE</button>
</th>
</tr>
</table>
<table id="carTable"></table>
</body>
<script src="./cars.js"></script>
<script src="./script.js"></script>
</html>