Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equir="Content-Type" content="text/html"; charset="UTF-8">
  4. <link rel="stylesheet" type="text/css" href="style.css"/>
  5. </head>
  6. <body>
  7.  
  8. <p align="left">left blue</p>
  9. <p align="center">center green</p>
  10. <p align="right">right red</p>
  11.  
  12. <h2 title="1">h2 yellow, size 16</h2>
  13. <h2 title="2">h2 navy blue, size 20</h2>
  14.  
  15. <p title="test">test</p>
  16. <p title="test2">test</p>
  17.  
  18. </body>
  19. </html>
  20.  
  21. body{background-color:black;}
  22.  
  23. [align="left"]{color:blue}
  24. [align="center"]{color:green}
  25. [align="right"]{color:red}
  26.  
  27. h2[title="1"]{font-size:16px; color:yellow}
  28. h2[title="2"]{font-size:20px; color:#000080}
  29.  
  30. [title="test"]{font-size:8px; color:orange; font-weight:bold}
  31. [title="test2"]{font-size:25px; color:orange; font-weight:bold}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement