-
Notifications
You must be signed in to change notification settings - Fork 0
/
contenidos.html
51 lines (41 loc) · 1.1 KB
/
contenidos.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<title> Mi primera web con varias paginas</title>
</head>
<body>
<!-- Encabezado -->
<h1>MI PRIMERA PAGINA WEB</h1>
<!-- Menu -->
<ul>
<li><a href="index.html" title="inicio">Inicio</a></li>
<li><a href="contenidos.html">Contenidos</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
<hr />
<!-- Contenido de Contenidos -->
<h2>Tablas de Contenidos</h2>
<table border="1">
<tr>
<th>Perro</th>
<th>Tigre</th>
<th>Oso</th>
<th>Leon</th>
</tr>
<tr>
<td>
<img src="imagenes/perro.jpg" height="100px" />
</td>
<td>
<img src="imagenes/tigre.jpg" height="100px" />
</td>
<td>
<img src="imagenes/oso.jpg" height="100px" />
</td>
<td>
<img src="imagenes/leon.jpg" height="100px" />
</td>
</tr>
</table>
</body>
</html>