-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (34 loc) · 1.34 KB
/
index.html
File metadata and controls
43 lines (34 loc) · 1.34 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Selección de Vehículo</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Formulario de selección de vehículo</h1>
<form id="userForm">
<label for="name">Nombre:</label>
<input type="text" id="name" placeholder="Introduce tu nombre" required>
<label for="email">Correo electrónico:</label>
<input type="email" id="email" placeholder="Introduce tu correo" required>
<label for="car">Selecciona un auto:</label>
<select id="car" required>
<option value="">--Selecciona un auto--</option>
<option value="auto1">Toyota Corolla</option>
<option value="auto2">Ford Mustang</option>
<option value="auto3">BMW X5</option>
</select>
<button type="submit">Enviar</button>
</form>
<div id="carInfo" class="car-info">
<h2>Información del Vehículo</h2>
<p id="info"></p>
<img id="carImage" src="" alt="Imagen del vehículo" style="max-width: 100%; height: auto;">
</div>
</div>
<script src="script.js"></script>
</body>
</html>