-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContacto.html
More file actions
69 lines (48 loc) · 1.65 KB
/
Contacto.html
File metadata and controls
69 lines (48 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contacto</title>
<meta name="description" content="Esta es una granja de animales y verduras, tenemos los mejores productos">
<link rel="stylesheet" href="./normalise.css">
<link rel="icon" href="./Iconos/IconoGranja.ico">
<link rel="stylesheet" href="style.css">
</head>
<header class="header">
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="Productos.html">Productos</a></li>
<li><a href="AcercaDe.html">Acera de</a></li>
<li><a href="Contacto.html">Contacto</a></li>
</ul>
<form class="search-form" >
<input type="text" name="q" placeholder="Buscar">
<button type="submit">Buscar</button>
</form>
</nav>
</header>
<hr>
<body>
<div class="cuerpo">
<h1 class="h1contacto">Contacto</h1>
<br><br>
<b>Comentarios:</b>
<form action="">
<textarea name="Comentario" id="" cols="30" rows="5" placeholder="Escribe tu comentario aqui" minlength="2" maxlength="100"></textarea>
<br>
<button class="boton">Enviar</button>
<label for=""></label>
</form>
<footer>
<address>
<p><b>Contacto:</b> granjanikel@gmail.com</p>
<p><b>Direccion:</b> Calle 23 Esq #4 Santo Domingo</p>
<p><b>Telefono:</b> 809-342-2345</p>
<p><b>Derechos de autor © 2023 Sitio www.GranjaNikel.com</b></p>
</address>
</footer>
</div>
</body>
</html>