-
Notifications
You must be signed in to change notification settings - Fork 0
/
Prueba.html
55 lines (38 loc) · 928 Bytes
/
Prueba.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
<!DOCTYPE html>
<html lang = "es"/>
<head>
<meta charset = "iso-8859-1"/>
<title> GRANJA PORCICOLA WILBUR</title>
<link rel="stylesheet" type="text/css" href="EstilosPrueba.css">
</head>
<body>
<div id="Agrupar">
<header id="Cabecera">
<h1>BIENVENIDOS A LA GRANJA PORCICOLA WILBUR</h1>
</header>
<nav id = "Menu">
<ul>
<li>Inicio</li>
<li>Catalogo</li>
<li>Procesos en la Granja</li>
<li>Conoce Nuestra Granja Wilbur</li>
</ul>
</nav>
<section id = "Seccion">
<article>
La Granja Wilbur produce el mejor cerdo de la ciudad.
</article>
<article>
Llevamos un proceso adecuado para nuestros animales.
</article>
</section>
<aside id = "Columna">
<blockquote>Consultar</blockquote>
<blockquote>Acerca de</blockquote>
</aside>
<footer id = "Pie">
<small>Todos los Derechos Reservados. PPI 2014</small>
</footer>
</div>
</body>
</html>