Advertisement
TuAreaDeInformatica

Curso HTML5 - Parte 8

May 3rd, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.41 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title> Titulo de la pagina </title>
  4.         <link rel="stylesheet" type="text/css" href="estilo.css">
  5.         <style>
  6.             body {
  7.                 background-image: url(imagen.jpg);
  8.                 background-size: cover;
  9.             }
  10.  
  11.             p {
  12.                 font-size: 15px;
  13.                 text-align: justify;
  14.             }
  15.         </style>
  16.     </head>
  17.     <body>
  18.         <p style="font-weight: bold;"> Estoy aprendiendo a escribir HTML. </p>
  19.         <p> Hola </p>
  20.     </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement