Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.06 KB | None | 0 0
  1. index.html
  2.  <!DOCTYPE html>
  3. <html lang="pl">
  4. <head>
  5.     <title>Strona www</title>
  6.      <meta charset="UTF-8">
  7.     <link rel="stylesheet" type="text/css" href="style.css" media="all">
  8.  
  9. </head>
  10. <body>
  11. <div class="Container">
  12.     <div class="menu">
  13.         <div class="menu1">menu1</div>
  14.         <div class="menu2">menu2</div> 
  15.         <div class="menu3">menu3</div>     
  16.         <div class="menu4">menu4</div> 
  17.         <div style="clear: both;"></div>
  18.  
  19.     </div>
  20. </div>
  21. </body>
  22. </html>
  23. style.css
  24. body{
  25.     background-color: grey;
  26.  
  27.  
  28. }
  29. .Container
  30. {
  31.     width: 1000px;
  32.     margin-left: auto;
  33.     margin-right: auto;
  34.  
  35. }
  36. .menu {
  37.     widows: 900px;
  38.     height: 90px;
  39.    
  40. }
  41. .menu1
  42. {
  43.     float: left;
  44.     width: 225px;
  45.     height:90px;
  46.     background-color: red;
  47. }
  48. .menu2
  49. {
  50.     float: left;
  51.     width: 225px;
  52.     height:90px;
  53.     margin-left: 15px;
  54.         background-color: red;
  55.  
  56. }
  57.  
  58. .menu3
  59. {
  60.     float: left;
  61.     width: 225px;
  62.     height:90px;
  63.         background-color: red;
  64.             margin-left: 15px;
  65.  
  66.  
  67. }
  68. .menu4
  69. {
  70.     float: left;
  71.     width: 225px;
  72.     height:90px;
  73.         background-color: red;
  74.             margin-left: 15px;
  75.  
  76.  
  77.  
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement