-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
100 lines (96 loc) · 4.56 KB
/
contact.html
File metadata and controls
100 lines (96 loc) · 4.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Mi página de contacto</title>
</head>
<body>
<nav class="navbar">
<ul class="navbar-list">
<li class="navbar-item"><a href="">Inicio</a></li>
<li class="navbar-item"><a href="">Quien soy</a></li>
<li class="navbar-item"><a href="">Equipo</a></li>
<li class="navbar-item"><a href="">Transporte</a></li>
<li class="navbar-item active"><a href="">Contacto</a></li>
<li class="navbar-item"><a href="">Tareas</a></li>
</ul>
</nav>
<main>
<section class="contact">
<h2>Contacta con nosotros</h2>
<div>
<div>
Esto es un mapa
</div>
<div>
<div class="form">
<form name="contacto" method="get" action="">
<div class="form-row">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" placeholder="Nombre" required>
<label for="apellidos">Apellidos:</label>
<input type="text" id="apellidos" name="apellidos" placeholder="Apellidos">
</div>
<div class="form-row">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="name@company.com"
pattern="[A-Za-z0-9\.\+]+@[A-Za-z0-9]+\.[A-Za-z0-9\.]+" required>
</div>
<div class="form-row">
<div>Tipo de misión</div>
<label for="tipo_mision_1">Rescate</label>
<input type="radio" id="tipo_mision_1" name="tipo_mision" value="Rescate" required>
<label for="tipo_mision_2">Ajuste de cuentas</label>
<input type="radio" id="tipo_mision_2" name="tipo_mision" value="Ajuste de cuentas" required>
<label for="tipo_mision_3">Disparos y explosivos</label>
<input type="radio" id="tipo_mision_3" name="tipo_mision" value="Disparos y explosivos" required>
</div>
<div class="form-row">
<label for="ejercito">Tamaño del ejercito:</label>
<input type="number" id="ejercito" name="ejercito" min="10" required>
</div>
<div class="form-row">
<label for="fecha">Fecha de trabajo:</label>
<input type="date" id="fecha" name="fecha"required>
</div>
<div class="form-row">
<input type="submit" value="Enviar">
</div>
</form>
</div>
</div>
</div>
</section>
<section class="product-price">
<table>
<thead>
<tr>
<th>Toipo de servicio</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr>
<td>Consulta de misión</td>
<td>100 €</td>
</tr>
<tr>
<td>Misión simple</td>
<td>500 €</td>
</tr>
<tr>
<td>Rescate</td>
<td>1000 €</td>
</tr>
<tr>
<td>Salvar Gotham</td>
<td>15000 €</td>
</tr>
</tbody>
</table>
</section>
</main>
</body>
</html>