Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Sklep papierniczy</title>
  5. <meta charset="utf-8">
  6. <link rel="stylesheet" href="style.css">
  7. </head>
  8. <body>
  9. <div id="baner">W naszym sklepie internetowym kupisz najtaniej</div>
  10. <div id="left"><h1>Promocja 15% obejmuje artykuły:</h1>
  11. <ul>
  12. <li>Gumka do mazania</li>
  13. <li>Cienkopis</li>
  14. <li>Pisaki 60 szt.</li>
  15. <li>Markery 4 szt.</li>
  16. </ul>
  17. </div>
  18. <div id="mid"></div>
  19. <div id="right">Kontakt</div>
  20. <div id="footer">Autor strony: 00311604531</div>
  21.  
  22.  
  23. </body>
  24. </html>
  25.  
  26.  
  27. ----------------------------
  28.  
  29.  
  30. * {
  31. margin: 0;
  32. padding: 0;
  33. }
  34.  
  35. #baner {
  36. background-color: #E8C84E;
  37. height: 50px;
  38. width: 100%;
  39. font-size: 30px;
  40. font-weight: bold;
  41. text-align: center;
  42. }
  43.  
  44. #left {
  45. background-color: #FFB544;
  46. height: 500px;
  47. width: 35%;
  48.  
  49. float: left;
  50. }
  51.  
  52. #mid {
  53. background-color: white;
  54. height: 500px;
  55. width: 30%;
  56. text-align: center;
  57. float: left;
  58. }
  59.  
  60. #right {
  61. background-color: #FFB544;
  62. height: 500px;
  63. width: 35%;
  64. font-size: 130%;
  65. text-align: center;
  66. float: left;
  67. }
  68.  
  69. #footer {
  70. background-color: #E8C84E;
  71. height: 50px;
  72. text-align: right;
  73. clear: both;
  74. }
  75.  
  76. ul {
  77. padding-top: 50px;
  78. list-style-type: disc;
  79. font-size: 18px;
  80. font-weight: bold;
  81. line-height: 50px;
  82. background-color: #FFAA00;
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement