Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin huuuu</title>
  7. <style id="jsbin-css">
  8. .caja{
  9. background-color:green;
  10. color:#fff;
  11. text-align:center;
  12. }
  13.  
  14. .second{
  15. background-color:pink;
  16. }
  17.  
  18. .third{
  19. background-color:aqua;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24.  
  25. <div class="caja first">First example</div>
  26.  
  27. <div class="caja second">Second example</div>
  28.  
  29. <div class="caja third">Third example</div>
  30.  
  31.  
  32.  
  33. <script id="jsbin-source-css" type="text/css">.caja{
  34. background-color:green;
  35. color:#fff;
  36. text-align:center;
  37. }
  38.  
  39. .second{
  40. background-color:pink;
  41. }
  42.  
  43. .third{
  44. background-color:aqua;
  45. }</script>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement