Ejemplo de tabla html

Aqui muestro un ejemplo de tabla en el cual muestro los datos de nombre y apellido

aqui el codigo:

 
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Tabla</title>
</head>
<body>
<table>
  <tr>
    <th> </th>
    <th>Nombre</th>
    <th>Apellido</th>
  </tr>
  <tr>
    <th>Datos</th>
    <td>Carlos</td>
    <td>Flores</td>
  </tr>
</table>
</body>
</html>






Comentarios

Populares

Buscar en este blog