Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.05 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <meta http-equiv="content-type" content="text/html; charset=utf-8">
  4.  
  5.     <title>Htmltest</title>
  6.      <style type="text/css">
  7.          @media screen {
  8.             #heading {
  9.                 font-family: sans-serif;
  10.                 font-size:3em;
  11.                 border:1px solid black;
  12.             }
  13.             p {
  14.                 text-indent:10px;
  15.             }
  16.          }
  17.          @media handheld {
  18.             #heading {
  19.                 font-size:2em;
  20.                 border:1px solid black;
  21.                 text-decoration: underline;
  22.             }
  23.             p {
  24.                 text-indent:30px;
  25.             }
  26.         }
  27.          @media print {
  28.             #heading {
  29.                 font-family: serif;
  30.                 font-size:2em;
  31.                 text-decoration: underline;
  32.             }
  33.             p {
  34.                 text-indent:30px;
  35.             }
  36.         }
  37.      </style>
  38. </head>
  39. <body>
  40.     <h1 id="heading">title</h1>
  41.     <p id="par1">hola que tal</p>
  42.     <p id="par2">muy bien y tu</p>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement