Guest User

Untitled

a guest
Feb 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN">
  3. <html>
  4. <head>
  5. <style type="text/css">
  6. #flag { url(images/heartseedLightImage2.jpg) no-repeat }
  7.  
  8. #green { background:green; display:block; float: left; width: 100px }
  9. #white { background:yellow; display:block; float: left; width: 100px }
  10. #red { background:red; display:block; float: left; width: 100px }
  11.  
  12. #flag {
  13. float:left;
  14. width:225px;
  15. height:375px;
  16. margin: 0px auto;
  17. width: 70%;
  18. }
  19.  
  20. #container {
  21. width: 100%;
  22. padding-top: 100px;
  23. }
  24. </style>
  25. </head>
  26.  
  27.  
  28.  
  29. <body>
  30.  
  31. <div id="container">
  32.  
  33. <div id="flag">
  34. <div id="green">test
  35. </div>
  36. <div id="white">test
  37. </div>
  38. <div id="red">test
  39. </div>
  40. </div>
  41.  
  42. </div>
  43.  
  44.  
  45.  
  46. </body>
  47. </html>
Add Comment
Please, Sign In to add comment