Advertisement
Guest User

Website

a guest
Feb 19th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.     <title>index</title>
  6.  
  7.     <meta charset="UTF-8">
  8.     <meta name="description" content="">
  9.     <meta name="author" content="author">
  10.     <meta name="keywords" content="author">
  11.     <meta name="generator" content="Webocton - Scriptly (www.scriptly.de)">
  12.  
  13.     <link href="styles/style.css" type="text/css" rel="stylesheet">
  14.     <link href="favicon.ico" type="image/x-icon" rel="shortcut icon">
  15. </head>
  16. <body>
  17.     <div id="seitenbereich">
  18.         <div id="header">
  19.             <p>Lorem Ipsum</p>
  20.         </div>
  21.         <div id="nav">
  22.             <div class="button" id="button1">That's me!'</div>
  23.             <div class="button" id="button2">Projekte</div>
  24.             <div class="button" id="button3">Galerie</div>
  25.             <div class="button" id="button5">Referenzen</div>
  26.  
  27.         </div>
  28.         <div id="inhalt">
  29.                 <p>Lorem ipsum dolor sit amet, consectetur adipisici elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  30.         </div>
  31.         <div id="fusszeile">
  32.         Lorem ipsum dolor sit amet, consectetur adipisici elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  33.         </div>
  34.     </div>
  35. </body>
  36. </html>
  37. #########################################################################################################################################################################################################################################################################################################################################################################################################
  38.  
  39. html, body{
  40. font-family: Arial, sans-serif;
  41. }
  42. #header{
  43.     background-color: #0092FF;
  44.     background:url(http://localhost/niemeczek/images/header.jpg) no-repeat left top;
  45.     width: 80%;
  46.     padding: 5em;
  47.  
  48. }
  49.  
  50. #nav{
  51.     margin-top: 7em;
  52. }
  53.  
  54. .button {
  55.     width: 16%;
  56.     min-width: 5em;
  57.     min-height: 3em;
  58.     margin-left: 5%;
  59.     margin-top: 0.5em;
  60.  
  61.     background-color: #0092FF;
  62.  
  63.     padding-top: 1.5em;
  64.     padding-bottom: 0em;
  65.     padding-left: 3%;
  66.  
  67.     font-size: 3em;
  68.     color: #4A0700;
  69.  
  70.     float: left;
  71.     border-radius: 30px;
  72.  
  73.     box-shadow: 5px 5px 30px grey;
  74.  
  75.  
  76.  
  77. }
  78. .button:hover { box-shadow: 5px 5px 23px grey; }
  79. .button:focus { box-shadow: 5px 5px 19px grey; }
  80. .button:active { box-shadow: 6px 6px 9px grey; }
  81. #button1{
  82.     background-color: #B71201;
  83.     color: #3D0400;
  84.     font-weight: bold;
  85. }
  86. #button2{
  87.     background-color: #05AB00;
  88.     color: #3D0400;
  89.     font-weight: bold;;
  90. }
  91. #button3{
  92.     background-color: #FFA605;
  93.     color: #BF5E03;
  94.     font-weight: bold;
  95. }
  96. #button4{
  97.     background-color: #FF4A04;
  98.     color: ;
  99.     font-weight: bold;
  100. }
  101.  
  102. #inhalt{
  103.     background-color: #F3DFC4;
  104.     float: left;
  105.     width: 50%;
  106.     min-height: 30em;
  107.     margin-left:23%;
  108.     margin-top: 3em;
  109.     border-radius: 30px;
  110.     padding: 35px;
  111. }
  112. #fusszeile{
  113.     position: absolute;
  114.     bottom: 0;
  115.     border: 1px black solid;
  116.     width: 100%;
  117.  
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement