You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.html 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <!DOCTYPE HTML >
  2. <html lang="de-DE" class="scheme_original">
  3. <head>
  4. <title>HTML FlexBox Template - Two columns, left menu</title>
  5. <meta http-equiv="content-type" content="text/html">
  6. <meta name="description" content="Use this HTML basic website layout template with the navigation menu on the left, the main content at the center, the extra stuff on the right.">
  7. <meta name="generator" content="HAPedit 3.1">
  8. <link rel="canonical" href="https://www.w3docs.com/snippets/html/layout_templates/01.html" />
  9. <meta property="og:type" content="website" />
  10. <meta property="og:title" content="HTML FlexBox Template - Two columns, left menu" />
  11. <meta property="og:description" content="Use this HTML basic website layout template with the navigation menu on the left, the main content at the center, the extra stuff on the right." />
  12. <meta property="og:image" content="https://www.w3docs.com/build/images/logo-amp.png" />
  13. <meta property="og:image:type" content="image/jpeg" />
  14. <meta property="og:image:width" content="192" />
  15. <meta property="og:image:height" content="192" />
  16. <meta property="og:image:alt" content="W3dcos" />
  17. <style type="text/css">
  18. html, body {
  19. margin: 0;
  20. padding: 0;
  21. }
  22. body {
  23. color: #292929;
  24. font: 90% Roboto, Arial, sans-serif;
  25. font-weight: 300;
  26. }
  27. p {
  28. padding: 0 10px;
  29. line-height: 1.8;
  30. }
  31. ul li {
  32. padding-right: 10px;
  33. line-height: 1.6;
  34. }
  35. h3 {
  36. padding: 5px 20px;
  37. margin: 0;
  38. }
  39. div#header {
  40. position: relative;
  41. }
  42. div#header h1 {
  43. height: 80px;
  44. line-height: 80px;
  45. margin: 0;
  46. padding-left: 10px;
  47. background: #e0e0e0;
  48. color: #292929;
  49. }
  50. div#header a {
  51. position: absolute;
  52. right: 0;
  53. top: 23px;
  54. padding: 10px;
  55. color: #006;
  56. }
  57. div#navigation {
  58. background: #7cb71c;
  59. }
  60. div#navigation li {
  61. list-style: none;
  62. }
  63. div#extra {
  64. background: #147FA9;
  65. }
  66. div#footer {
  67. background: #42444e;
  68. color: #fff;
  69. }
  70. div#footer p {
  71. padding: 20px 10px;
  72. }
  73. div#wrapper {
  74. float: left;
  75. width: 100%;
  76. }
  77. div#content {
  78. margin: 0 25%;
  79. }
  80. div#navigation {
  81. float: left;
  82. width: 25%;
  83. margin-left: -100%;
  84. }
  85. div#extra {
  86. float: left;
  87. width: 25%;
  88. margin-left: -25%;
  89. }
  90. div#footer {
  91. clear: left;
  92. width: 100%;
  93. }
  94. </style>
  95. </head>
  96. <body>
  97. <div id="container">
  98. <div id="header">
  99. <h1>EUGEN WEB</h1>
  100. <a href="/download/template/1" target="_blank">download Link</a>
  101. </div>
  102. <div id="wrapper">
  103. <div id="content">
  104. <p><strong>1. Main Content</strong></p>
  105. <h3>Ueberschrift 1 </h3>
  106. <p>
  107. üüüüü
  108. </p>
  109. <p>
  110. TEXT1.1
  111. </p>
  112. <h3>Ueberschrift2</h3>
  113. <p>
  114. TEXT2
  115. </p>
  116. </div>
  117. </div>
  118. <div id="navigation">
  119. <p><strong>2. Navigation Menu</strong></p>
  120. <h3>Seiten</h3>
  121. <ul>
  122. <li><a href="https://www.google.de/" target="_blank">GOOGLE</a></li>
  123. <li>1</li>
  124. <li>2</li>
  125. </ul>
  126. <h3>Verknupfungen und Bilder </h3>
  127. <ul>
  128. <li>5</li>
  129. <li>6</li>
  130. <li>7</li>
  131. <li>8</li>
  132. </ul>
  133. </div>
  134. <div id="extra">
  135. <p><strong>3. Additional Stuff</strong></p>
  136. <h3>Stichpunkte:</h3>
  137. <ul>
  138. <li>X</li>
  139. <li>X</li>
  140. <li>X</li>
  141. <li>X</li>
  142. </ul>
  143. </div>
  144. <div id="footer"><p>Footer</p>
  145. </div>
  146. </div>
  147. <script type="text/javascript">AddFillerLink("content", "navigation", "extra")</script>
  148. </body>
  149. </html>