Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="de">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Juicy Erfrischungsgetränke</title>
  6. <style>
  7. @import url('https://fonts.googleapis.com/css?family=Merienda+One|Open+Sans:400,700');
  8.  
  9. body {
  10. background-image: url(bilder/verlauf.png);
  11. background-repeat:repeat-x;
  12. background-color: rgb(151,191,13);
  13. font-family: "Open Sans", sans-serif;
  14. }
  15.  
  16. h2, nav {
  17. font-family: "Merienda One", cursive;
  18. }
  19.  
  20. h1 {
  21. display:none;
  22. }
  23.  
  24. #rahmen {
  25. width: 960px;
  26. margin: 0 auto;
  27. }
  28.  
  29. header img {
  30. margin-top: 10px;
  31. }
  32.  
  33. nav {
  34. display: inline-block;
  35. width:713px;
  36. text-align:right;
  37.  
  38. }
  39. nav ul {
  40. list-style-type: none;
  41. padding-left: 0;
  42. }
  43. nav li {
  44. display: inline;
  45. margin-left:20px;
  46. }
  47. nav a {
  48. color: white;
  49. text-decoration:none;
  50. font-size: 21px;
  51. }
  52.  
  53. #visual {
  54. background-image: url(bilder/kopfbild.png);
  55. height: 234px;
  56. margin-bottom: 20px;
  57. }
  58. main {
  59. display: block; /* fix für IE */
  60. }
  61. .spalte {
  62. width:260px;
  63. background-color:white;
  64. display: inline-block;
  65. margin-right:30px;
  66. border-radius:20px;
  67. padding:20px;
  68. font-size: 14px;
  69. color: rgb(90,63,24);
  70. vertical-align:top;
  71. }
  72.  
  73. .letzte {
  74. margin-right:0;
  75. }
  76. .breit {
  77. width: 590px;
  78. }
  79. h2 {
  80. margin-top: 5px;
  81. }
  82.  
  83. img {
  84. border-radius:20px;
  85. }
  86.  
  87. footer {
  88. background-image: url(bilder/fuss.png);
  89. margin-top: 20px;
  90. height: 31px;
  91. padding: 6px 20px;
  92. }
  93. #icons {
  94. margin-left: 759px;
  95. }
  96. </style>
  97. </head>
  98. <body>
  99. <h1>Juicy Erfrischungsgetränke</h1>
  100. <div id="rahmen">
  101. <header>
  102. <a href="index.html"><img src="bilder/juicy_logo.png" alt="Juicy Logo"></a><nav>
  103. <ul>
  104. <li><a href="index.html">Startseite</a>
  105. <li><a href="ueber.html">Über Juicy</a>
  106. <li><a href="sorten.html">Sorten</a>
  107. <li><a href="galerie.html">Galerie</a>
  108. <li><a href="kontakt.html">Kontakt</a>
  109. </ul>
  110. </nav>
  111. <div id="visual"></div>
  112. </header>
  113. <main>
  114. <section class="spalte">
  115. <h2>Willkommen!</h2>
  116. <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.</p>
  117. <a href="">zum Gewinnspiel</a>
  118. </section><img src="bilder/juicy_startbild.jpg" alt="Produktbild der Juicy Flaschen">
  119.  
  120. </main>
  121. <footer>
  122. <img src="bilder/mail.png" alt="eMail Button">
  123. <img id="icons" src="bilder/social_icons.png" alt="Links zu sozialen Netzwerken">
  124. </footer>
  125. </div>
  126. </body>
  127. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement