Advertisement
TuAreaDeInformatica

Curso HTML5 - Parte 4

Aug 8th, 2014
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.42 KB | None | 0 0
  1. <html>
  2.         <head>
  3.                 <title> Hola. Esto es un ejemplo </title>
  4.         </head>
  5.  
  6.         <body>
  7.                 <h1> Heading 1 </h1>
  8.  
  9.                 <p> Esto es un texto de ejemplo.</p>
  10.         <table border="1">
  11.             <tr>
  12.                 <td>
  13.                     Texto
  14.                 </td>
  15.             </tr>
  16.             <tr>
  17.                 <td>
  18.                     <ul>
  19.                         <li>Lista</li>
  20.                         <li>Lista 2</li>
  21.                     </ul>
  22.                 </td>
  23.             </tr>
  24.         </table>
  25.     </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement