Etiquetas

lunes, 7 de noviembre de 2016

Ejercicio de Todo

<html>
<head>
<title>Alan Walker</title>
<link href="estilos.css" rel="stylesheet"type=text/css"/>
</head>
<body>
<h1>Alan Walker</h1>
<p>Es un DJ noruego nacido en 1997</p>
<img src="Alan walker foto.jpg"/>
<h2>Integrantes del Grupo</h2>
<ul>
<li>Alan Walker</li>
</ul>
<p>Pertenece a una "asociación" de DJ's llamada NCS (NO  COPYRIGHT SOUND)</p>
<h2>TEMAS</h2>
<table width="80%" border="1" align="center">
<caption>Grandes exitos de Alan Walker</caption>
<tr>
<th>Año</th>
<th>Tema</th>
</tr>
<tr>
<td>2014</td>
<td>Fade</td>
</tr>
<tr>
<td>2015</td>
<td>Faded</td>
</tr>
<tr>
<td>2016</td>
<td>Sing me to sleep</td>
</tr>
</table>

<h1>Sitio web oficial</h1>

<p>www.alanwalkermusic.no</p>
</body>
</html>

CSS

th
{
background-color:fff000;
}
td
{
background-color:#7FFF00;
}
table
{
border-color:#BLACK;
}

miércoles, 2 de noviembre de 2016

Actividad Tablas 1

<html>
<head>
<title>Ejemplo uso de tablas</title>
<link href="tabla1.css"rel="stylesheet" type="text/css"/>
</head>
<body>
<table width="80%" border="1" align="center">
<caption>Tabla de Prueba</caption>
<tr>
<th>Jefe departamento</th>
<th>Jefe sección</th>
<th>Empleado</th>
<th>Edad empleado</th>
</tr>
<tr>
<td rowspan="2">Juan Alberto</td>
<td>Martín Lopez</td>
<td>Maite Suarez</td>
<td>55</td>
</tr>
<tr>
<td>Luis morales</td>
<td>Mateo carralde</td>
<td>33</td>
</tr>
<tr>
<td>Diana Rodriguez</td>
<td>Carlos Hernandez</td>
<td>Alberto Fernández</td>
<td>62</td>
</tr>
<tr>
<td colspan="2">Luis Perez</td>
<td>Diego Gutierrez</td>
<td>44</td>
</tr>
</table>
</html>

CSS
th
{
color:#00FFFF;
background-color:#663399;
}
td
{
background-color:#FFFF00;
color:#FF0000
}
body
{
text-aling:center;
}