Advertisement
newbitek

static

Dec 25th, 2017
544
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  <title>Static</title>
  5.  <style type="text/css" media="screen">
  6.   #box{
  7.    background : blue;
  8.    width : 300px;
  9.    height : 300px;
  10.    top : 100px;
  11.    left : 200px;
  12.    }
  13.  </style>
  14. </head>
  15. <body>
  16. <div id="box">
  17.  </div>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement