-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcar.html
24 lines (23 loc) · 799 Bytes
/
car.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<title>Find a Car</title>
</head>
<body>
<div class="container">
<h1>Find a Car!</h1>
<form action="Car.php">
<div class="form-group">
<label for="price">Enter Maximum Price:</label>
<input id="price" name="price" class="form-control" type="number">
</div>
<div class="form-group">
<label for="miles">Enter Maximum Miles: </label>
<input id="miles" name="miles" class="form-control" type="number">
</div>
<button type="submit" class="btn-success">Submit</button>
</form>
</div>
</body>
</html>