Advertisement
Papadopolis

Untitled

Mar 2nd, 2012
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5.   <title> - jsFiddle demo</title>
  6.  
  7.   <script type='text/javascript' src='/js/lib/mootools-core-1.4.4.js'></script>
  8.  
  9.   <link rel="stylesheet" type="text/css" href="/css/normalize.css">
  10.   <link rel="stylesheet" type="text/css" href="/css/result-light.css">
  11.  
  12.   <style type='text/css'>
  13. body {
  14.     background: url('http://aux.iconpedia.net/uploads/1076620058994777287.png') no-repeat top right #b0c4de;
  15. }
  16.  
  17. * {
  18.   margin: 0;
  19.   padding: 0;
  20. }
  21.  
  22. #box {
  23.   font: 20px Georgia;
  24.   border: 2px  groove gray;
  25.   border-radius: 6px;
  26.   text-transform:  capitalize;
  27.   color: white;
  28.   text-align: center;
  29.   margin: 40px 150px;
  30.   width: 500px;
  31.   height: 400px;
  32.   background: #bfbfbf;
  33.   text-height: 200px;
  34.   overflow: hidden;
  35. }
  36.  
  37. #a {
  38.   background: red;  
  39. }
  40. #b {
  41.   background: green;
  42. }
  43. #c {
  44.   background: yellow;
  45. }
  46. #d {
  47.   background: purple;
  48. }
  49. #e{
  50.   background: orange;
  51. }
  52. #f{
  53.   background: violet;
  54. }
  55. #g{
  56.   background: pink;
  57. }
  58. #h{
  59.   background: RoyalBlue;
  60. }
  61. #i{
  62.   background: blue;
  63. }
  64.  
  65. #a, #b, #c, #d, #e, #f, #g, #h, #i {
  66.     height: 24px;
  67. }
  68.   </style>
  69.  
  70. </head>
  71. <body>
  72. <div id="box">
  73. <div id="a"></div>
  74. <div id="b"></div>
  75. <div id="c"></div>
  76. <div id="d"></div>
  77. <div id="e"></div>
  78. <div id="f">make me a coffe</div>
  79. <div id="g"></div>
  80. <div id="h">paletas são tão legais! :)</div>
  81. <div id="i"></div>
  82. <div id="a"></div>
  83. <div id="b"></div>
  84. <div id="c"></div>
  85. <div id="d"></div>
  86. <div id="e"></div>
  87. <div id="a"></div>
  88. <div id="f"></div>
  89. <div id="g"></div>
  90. <div id="h"></div>
  91. <div id="i"></div>
  92. <div id="a"></div>
  93. </div>
  94.  
  95. </body>
  96.  
  97.  
  98. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement