-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebtesting.html
More file actions
60 lines (54 loc) · 1.29 KB
/
Copy pathwebtesting.html
File metadata and controls
60 lines (54 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Car Display</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f8;
padding: 40px;
text-align: center;
}
h1 {
color: #333;
}
.car-list {
margin-bottom: 30px;
}
.car-item {
background-color: #fff;
border: 1px solid #ccc;
padding: 10px 15px;
margin: 10px auto;
max-width: 300px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
select {
padding: 10px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #888;
}
</style>
</head>
<body>
<h1>Car List</h1>
<div class="car-list">
<div class="car-item">Toyota - Corolla</div>
<div class="car-item">Honda - Civic</div>
<div class="car-item">Ford - Mustang</div>
<div class="car-item">BMW - 3 Series</div>
</div>
<form>
<label for="carSelect"><strong>Choose a car:</strong></label><br><br>
<select id="carSelect" name="car">
<option value="corolla">Toyota - Corolla</option>
<option value="civic">Honda - Civic</option>
<option value="mustang">Ford - Mustang</option>
<option value="bmw3">BMW - 3 Series</option>
</select>
</form>
</body>
</html>