10° Ejercicios HTML
<!DOCTYPE html>
<html>
<head>
<title>Mi primera página</title>
</head>
<body>
<h1>Mi primera pagina *</h1>
<button>Clic aquí</button>
<p>Esta es mi primera pagina con estructura básica</p>
<p>Se están utilizando las etiquetas de encabezadop y parrafo</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Datos personales</title>
</head>
<body>
<h1>Tania Salas</h1>
<h5>15 años</h5>
<p>Mis hobbies son leer</p>
<ul>
<li>Perro Caliente</li>
<li>Pizza</li>
<li>Empanada</li>
<li>mazamorra</li>
</ul>
<a href="http://www.fb.com">Red Social</a>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Mascota</title>
</head>
<body>
<h1>Firulai</h1>
<img href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTHBYstcWLIl2MkmfPs2R-Nu-8qijQq_c8sBg&s">
<p>firulai es un perro de raza criolla (Chankri) de color negro-marron</p>
<table>
<thead>
<tr>
<th>Edad</th>
<th>Raza</th>
<th>Color</th>
<th>Peso</th>
</tr>
</thead>
<tbody>
<tr>
<td>2 años</td>
<td>Chnkri</td>
<td>Marron</td>
<td>10 kg</td>
</tr>
</tbody>
</table>
<p>EL perro es juguetón, divertido y protector</p>
</body>
</html>
Comentarios
Publicar un comentario