-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (30 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
36 lines (30 loc) · 1.1 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
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<title>Car Form</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="styles/style.css" />
</head>
<body>
<div class="container">
<h1>ABC Car Lot:</h1>
<h2>Fill out the form below to enter a car into our car registry!</h2>
<form id="car-form">
<label for="make">Make:</label>
<input type="text" id="make" name="make" required />
<label for="model">Model:</label>
<input type="text" id="model" name="model" required />
<label for="year">Year:</label>
<input type="number" id="year" name="year" required />
<label for="color">Color:</label>
<input type="text" id="color" name="color" required />
<button type="submit">Create Car!</button>
</form>
<div id="car-container"></div>
</div>
<script src="script.js"></script>
<script src="./util/teacherJS.js"></script>
</body>
</html>