-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 2.57 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta author = "Claudio Paredes B." name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
<title>Desafio</title>
</head>
<body>
<div class="container">
<div class="mx-auto text-center">
<img src="./assets/img/conejo-perro-gato.jpg" alt="animales" class="img-fluid">
<h2 class="my-3">Consulta Veterinaria</h2>
</div>
<form>
<div class="form-group">
<label for="propietario">Dueño: </label>
<input type="text" class="form-control" id="propietario" aria-describedby="textoAyuda" value = "Nombre">
<small id="textoAyuda" class="form-text text-muted">Nunca compartiremos tus datos.</small>
</div>
<div class="form-group">
<label for="telefono">Numero Telefonico: </label>
<input type="text" class="form-control" id="telefono" value = "Telefono">
</div>
<div class="form-group">
<label for="direccion">Lugar de Residencia: </label>
<input type="text" class="form-control" id="direccion" value = "Direccion">
</div>
<div class="form-group">
<label for="nombreMascota">Nombre de la Mascota: </label>
<input type="text" class="form-control" id="nombreMascota" value = "Mascota">
</div>
<div class="form-group">
<label for="tipo">Tipo</label>
<select class="form-control" id="tipo">
<option value="perro">Perro</option>
<option value="gato">Gato</option>
<option value="conejo">Conejo</option>
</select>
</div>
<div class="form-group">
<label for="enfermedad">Motivo de la consulta: </label>
<input type="text" class="form-control" id="enfermedad" value = "Enfermedad">
</div>
<button type="submit" class="btn btn-primary">Agregar</button>
</form>
<div class="text-center mt-5">
<p>Datos Agregados</p>
<div id="resultado">
<ul></ul>
</div>
</div>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>