Advertisement
Guest User

CSS/HTML

a guest
Dec 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <Html>
  2. <Head>
  3. <title> Ayrton's Site </title>
  4. <link rel="stylesheet" type= "text/css" href="style.css" />
  5.  
  6. </head>
  7. <Body>
  8. <div id="container">
  9. <div id="header">
  10. <h1> My website header </h1>
  11. </div>
  12.  
  13. <div id="content">
  14. <div id="nav">
  15. <h3> Navigation </h3>
  16. <ul>
  17. <li><a href=""> Home</li>
  18. <li><a class="selected" a href="">About</a></li>
  19. <li><a href=""> Contact</li>
  20. </ul>
  21. </div>
  22.  
  23.  
  24. <div id="main">
  25. <h2> Home page </h2>
  26. <p> This is paragraph 1 </p>
  27. <p> This is paragraph 2 </p>
  28. <p> This is paragraph 3 </p>
  29. </div>
  30. </div>
  31. <div id="footer">
  32. Copyright &Copy; 2018 John Beckham.
  33.  
  34. </div>
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. </div>
  43.  
  44. </body
  45. </html>
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52. #header {
  53. background-color: black;
  54. color: white
  55. }
  56.  
  57. {
  58. text-decoration: none;
  59. color: orange;
  60. }
  61.  
  62.  
  63. #container {
  64. background-color: black
  65. width: 800px
  66. margin-left: auto;
  67. margin-right: auto;
  68. }
  69.  
  70. #header {
  71. background-color: black
  72. Color: Orange;
  73. text-align: center;
  74. }
  75.  
  76. #content {
  77. padding: 10px;
  78. }
  79.  
  80. #nav {
  81. width: 180px
  82. float: left;
  83.  
  84. }
  85. #nav ul {
  86. list-style-type: none;
  87. padding: 0;
  88. }
  89.  
  90. #nav .selected {
  91. font-weight: bold
  92. }
  93.  
  94. #main {
  95. background-color: yellow
  96. width: 600px
  97. float: right;
  98. }
  99. #footer {
  100. clear: both;
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement