lunes, 21 de marzo de 2016

TABLAS Y LISTAS EN HTML


Tablas y Listas en HTML


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
  <title>Tablas y Listas</title>
</head>
<body>
<center><h1>Listas Y Tablas en HTML</h1></center>
  <br>
   <table border="2">
     <tr>
    <th align="center" colspan="50">Titulo</th>
     </tr>
   <tr>
    <th>Nombre</th>
    <td>Wilber</td>
    <th colspan="2">Apellido</th>
    <td colspan="2">Ramos Rodriguez</td>
   </tr>
   <tr>
    <th>Cedula</th>
    <td>1022414042</td>
    <th>Curso</th>
    <td>Introduccion Web y Multimedia</td>
    <th>Facultad</th>
    <td>Ingenieria De Sistemas</td>
   </tr>
     <tr>
    <td colspan="6"><ol>
    <li type="disc">Descripción</li>
    </ol>
     <dl>
     <dt>Aficiones</dt>
     <dd>Juegos de video</dd>
     <dd>Comer</dd>
     <dd>Deportes</dd>
     </dl>
      </td>
   </tr>
      </table>
</body>
</html> 



Imagen como queda la página


No hay comentarios:

Publicar un comentario