Advertisement
Guest User

Untitled

a guest
Feb 14th, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.42 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>layout</title>
  6.  
  7. <style>
  8. #wrap{
  9.     margin:0;
  10.     padding:0;
  11. }
  12. #content{
  13.     margin:0 auto;
  14.     width:800px;
  15. }
  16.  
  17. #content>ul{
  18.     padding:0;
  19.     margin:0;
  20.     list-style:none;
  21.     width:inherit;
  22.     background:#999;
  23.     border:2px solid black;
  24. }
  25.  
  26. #content>ul>li{
  27.     display:;
  28.     float:left;
  29.     background:#FFFFFF;
  30.    
  31. }
  32.  
  33. #content>ul li a{
  34.     display:block;
  35.     padding:5px 10px;
  36. }
  37. #content>ul li a:hover{
  38.     background:#aaa;
  39. }
  40.  
  41. #content li>ul{
  42.     position:absolute;
  43.     display:none;
  44.     list-style:none;
  45.     margin:0;
  46.     padding:0;
  47. }
  48.  
  49. #content li:hover ul{
  50.     display:block;
  51. }
  52.  
  53. #header img{
  54.     float:left;
  55. }
  56.  
  57. #header{
  58.     height:90px;
  59. }
  60.  
  61. .clear{
  62.     clear:both;
  63. }
  64.  
  65. h1{margin:0; padding-bottom:10px;}
  66.  
  67. </style>
  68.  
  69. </head>
  70.  
  71. <body>
  72. <div id="wrap">
  73. <div id="content">
  74. <div id="header">
  75. <img src="website/logo.png" />
  76. <h1>Computer Repair</h1>
  77. </div>
  78. <ul>
  79. <li><a href="#">Home</a></li>
  80. <li><a href="#">About</a></li>
  81. <li><a href="#">Services</a>
  82. <ul>
  83. <li><a href="#">repair</a></li>
  84. <li><a href="#">installation</a></li>
  85. <li><a href="#">data recovery</a></li>
  86. </ul>
  87. </li>
  88. <li><a href="#">Contact us</a></li>
  89. </ul>
  90. <div class="clear"></div>
  91. testing
  92.  
  93. </div>
  94.  
  95. </div>
  96.  
  97.  
  98.  
  99. </body>
  100. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement