Advertisement
Guest User

Reflexion

a guest
Mar 15th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.52 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5.   <title>Regelwerk</title>
  6.   <style> /*die Anweisungen */
  7.   body {
  8.       font-family:"Trebuchet MS", Helvetica, sans-serif;
  9.       letter-spacing: 4px; /*! wow*/
  10.       font-size: 1em; /*Standardgröße */
  11.       background-color: #254c73;
  12.   }
  13.   h1,h2,h3,h4,h5,h6,#logo   {
  14.     text-align: center;
  15.   }
  16.  
  17. #logo {
  18.   width: 37em;
  19.   margin: 0 auto;
  20. }
  21.  
  22.   #inhalt {
  23.         width: 37em;  /*ca. din-a4 Breite*/
  24.         min-height: 52em; /*ca. din-a4 Länge*/
  25.         margin-left: auto;
  26.         margin-right: auto;
  27.         margin-top: 100px; /*Höhe des Logo?*/
  28.         padding: 1em;
  29.         background-color: white;
  30.         box-shadow: 5px 5px 5px grey;
  31.         /*anstatt der Grafik*/
  32.   }
  33.   /*Ein Beispiel für kleinere Displays*/
  34.   @media (max-width: 23em) {
  35.    #inhalt, #logo  {
  36.        width: 22em;
  37.     }
  38.     #logo img {
  39.       width: 100%;
  40.       height: auto;
  41.     }
  42.  
  43.   }
  44.     </style>
  45. </head>
  46.  
  47. <body>
  48.      <div id="logo"><img src="../images/logo.jpg" width="xx" height="xx" alt="Logo Comunity Forum"></div>
  49.      <div id="inhalt">
  50.      <h1>Forum-Regelwerk</h1>
  51.      <h2>Schnellnavigation</h2>
  52.      <ol>
  53.      <li>Grundsätze
  54.         <ol>
  55.       <li>Das Forumregelwerk</li>
  56.      </ol>
  57.      </li>
  58.      <li>Allgemeine Regeln
  59.       <ol>
  60.         <li>usw.</li>
  61.       </ol>
  62.      </li>
  63.  
  64.      </ol>
  65.  
  66.      <hr />
  67.                  <h3>Änderungen des Regelwerks</h3>
  68.                  <p>Blabla....</p>
  69.                  <hr />
  70.      </div>
  71. </body>
  72.  
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement