Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head><title>html + css</title>
  4. <link href="style.css" type="text/css" rel="stylesheet" >
  5. </head>
  6. <style>
  7. body{
  8.     margin:0;
  9.     background : url("images(1).jpg");
  10.     background-size:cover;
  11.     max-width:1oo%;
  12.    
  13. }
  14. .nav{
  15. width:100%;
  16. background-color:#000033;
  17. hight:100px;
  18. margin-top:100px;
  19. opacity:0.6s;
  20. }
  21. ul{
  22. list-style:none;
  23. padding:0;
  24. margin:0;
  25. position:absolute;}
  26. li{
  27. float:left;
  28. margin-top:none;}
  29. a{
  30. width:150px;
  31. color:white;
  32. display:block;
  33. text-decoration:none;
  34. font-size:20px;
  35. text-align:center;
  36. padding:10px;
  37. border-bottom-style:bottom;
  38. font-family:century gothic;
  39. font-weight:bold;
  40. border-redius:10px;
  41. }
  42. a:hover{
  43. background:#669900
  44. trasition:0.3s;}
  45.  
  46.  
  47. </style>
  48. <body>
  49.  
  50. <div class="nav">
  51. <ul>
  52. <li><a href="#">home</a></li>
  53. <li><a href="#">number</a></li>
  54. <li><a href="#">fcacebook</a></li>
  55. <li><a href="#">about</a></li>
  56. <li><a href="#">blog</a></li>
  57. <li><a href="#">contact</a></li>
  58. <li><a href="#">details</a></li>
  59. </ul>
  60. </div>
  61.  
  62. </body>
  63.  
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement