css_practice_1.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Boxes</title>
  5. <style>
  6. * {
  7. /* border: 1px solid black; */
  8. font-family: "Courier New";
  9. margin: 0;
  10. padding: 0;
  11. }
  12. body {
  13. background-color: rgba(192, 192, 192, 0.3);
  14. }
  15. #page {
  16. width: 880px;
  17. border: 4px double black;
  18. background-color: white;
  19. margin: 10px auto;
  20. padding: 20px 50px;
  21. }
  22. #logo {
  23. width: 100%;
  24. text-align: center;
  25. }
  26. #navigation {
  27. width: 600px;
  28. height: 60px;
  29. margin: 10px auto;
  30. border-top: 2px solid black;
  31. border-bottom: 1px solid black;
  32. }
  33. #navigation>li {
  34. float: left;
  35. width: 120px;
  36. height: 40px;
  37. list-style-type:none;
  38. text-align: center;
  39. line-height: 40px;
  40. padding-top: 10px;
  41. }
  42. #navigation>li>a {
  43. text-decoration: none;
  44. letter-spacing: 0.15em;
  45. color: black;
  46. }
  47. #navigation>li:first-child>a{
  48. color: red;
  49. }
  50. #navigation>li>a:hover {
  51. color: red;
  52. }
  53. #navigation~p {
  54. width: 600px;
  55. margin: 20px auto;
  56. text-align: center;
  57. line-height: 20px;
  58. }
  59. </style>
  60. </head>
  61. <body>
  62. <div id="page">
  63. <div id="logo">
  64. <img src="images/logo.gif" alt="The Analog Specialists" />
  65. </div>
  66. <ul id="navigation">
  67. <li><a href="#" class="on">Home</a></li>
  68. <li><a href="#">For Sale</a></li>
  69. <li><a href="#">Repairs</a></li>
  70. <li><a href="#">About</a></li>
  71. <li><a href="#">Contact</a></li>
  72. </ul>
  73. <p>
  74. <img src="images/keys.jpg" alt="Fender Rhodes, Hohner Clavinet, and Wurlitzer EP200" />
  75. </p>
  76. <p>
  77. We specialize in the sale and repair of classic keyboards, in particular the Fender Rhodes, Wurlitzer EP200, and Hohner Clavinet.
  78. </p>
  79. </div>
  80. </body>
  81. </html>