Advertisement
otku

Untitled

Oct 12th, 2021
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style type="text/css">
  4.  
  5. div.wrap {
  6.  
  7. padding: 5px;
  8. }
  9.  
  10. header {
  11.  
  12. max-width:600px;
  13. margin: 100px auto 5px;
  14. border: 1px solid blue;
  15. }
  16.  
  17. main {
  18.  
  19. max-width: 600px;
  20. margin: 5px auto;
  21. border:1px solid red;
  22. }
  23.  
  24. h1 {
  25.  
  26. margin: 0 auto;
  27. text-align: center;
  28. }
  29.  
  30. footer {
  31.  
  32. max-width: 600px;
  33. margin: 5px auto;
  34. border: 1px solid green;
  35. }
  36.  
  37. </style>
  38. </head>
  39. <body>
  40. <div class="wrap">
  41. <header>
  42. <h1>header</h1>
  43. </header>
  44. <main>
  45. <h1>main</h1>
  46. </main>
  47. <footer>
  48. <h1>footer</h1>
  49. </footer>
  50. </div>
  51.  
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement