Advertisement
Marski

Untitled

Dec 16th, 2015
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Telekom Layout</title>
  5. <link rel="stylesheet" type="text/css" href="exercise9.css">
  6. </head>
  7. <body>
  8. <!-- Header Start-->
  9. <header>
  10.  
  11. <div id="menu_wrapper">
  12. <ul id="logo">
  13. <li id="logo_image"></li>
  14. </ul>
  15.  
  16. <!--Navigation menu-->
  17. <nav id="navigation_menu">
  18. <ul id="navigation_menu">
  19. <li class="menu_item"><a href="#">Menu1</a></li>
  20. <li class="menu_item"><a href="#">Menu2</a></li>
  21. <li class="menu_item"><a href="#">Menu3</a></li>
  22. <li class="menu_item"><a href="#">Menu4</a></li>
  23. </ul>
  24. </nav>
  25. </div>
  26. </header>
  27.  
  28. <!-- Main Content -->
  29. <main id="wrapper">
  30.  
  31.  
  32. <!--Slider Section -->
  33. <section id="slider_section">
  34. <div id="slider"></div>
  35. </section>
  36.  
  37. <!--Phones Section -->
  38. <section id="phones_section">
  39. <aside id="asideLeft"></aside>
  40. <article class="phone" id="phone1"></article>
  41. <article class="phone" id="phone2"></article>
  42. <article class="phone" id="phone3"></article>
  43. <aside id="asideRight"></aside>
  44. </section>
  45.  
  46.  
  47. <!--Info Section -->
  48. <section id="info_section">
  49. <div class="info"></div>
  50. <div class="info"></div>
  51. <div class="info"></div>
  52. </section>
  53.  
  54. <!--Links Section -->
  55. <section id="links_section">
  56. <div class="link"></div>
  57. <div class="link"></div>
  58. <div class="link"></div>
  59. <div class="link"></div>
  60. </section>
  61.  
  62. </main>
  63.  
  64. </body>
  65. </html>
  66.  
  67.  
  68.  
  69.  
  70. *{
  71. padding: 0px;
  72. margin: 0px;
  73. }
  74.  
  75. body {
  76. background-color: #fff;
  77. }
  78.  
  79. /*Navigation Menu */
  80.  
  81. header {
  82. position: fixed;
  83. background-color: #5c5c5c;
  84. width: 100%;
  85. height: 60px;
  86. }
  87.  
  88. #menu_wrapper {
  89. width: 60%;
  90. margin: 0px auto 0px auto;
  91. }
  92.  
  93. #navigation_menu {
  94. float: right;
  95. display: table;
  96. list-style: none;
  97. height: 60px;
  98. }
  99.  
  100. #navigation_menu > li {
  101. display: table-cell;
  102. vertical-align: middle;
  103. text-align: center;
  104. height: 60px;
  105. padding: 0px 10px 0px 10px;
  106. }
  107.  
  108. #navigation_menu > li:hover {
  109. background-color: #222222;
  110. }
  111.  
  112. #navigation_menu a {
  113. color: #fff;
  114. text-decoration: none;
  115. }
  116.  
  117. #logo {
  118. float: left;
  119. height: 60px;
  120. width: 200px;
  121. background-color: #a2a2a2;
  122. list-style: none;
  123. }
  124.  
  125. /* Main Content */
  126.  
  127. #wrapper{
  128. width: 60%;
  129. background-color: #a1a1a1;
  130. margin: 0px auto 0px auto;
  131. }
  132.  
  133. #slider_section {
  134. background-color: #7f7d7d;
  135. height: 400px;
  136. padding-top: 60px;
  137. }
  138.  
  139. /* Phones Section*/
  140.  
  141. #phones_section{
  142. background-color: #a2a2a2;
  143. height: 600px;
  144. }
  145.  
  146. #asideLeft{
  147. height: 100%;
  148. width: 9.5%;
  149. background-color: #575757;
  150. float: left;
  151. }
  152.  
  153.  
  154. #asideRight{
  155. height: 100%;
  156. width: 9.5%;
  157. background-color: #575757;
  158. float: left;
  159. }
  160.  
  161. .phone{
  162. width: 27%;
  163. height: 100%;
  164. float: left;
  165. }
  166.  
  167. #phone1 {
  168. background-color: #888686;
  169. }
  170.  
  171. #phone2 {
  172. background-color: #6e6e6e;
  173. }
  174.  
  175. #phone3 {
  176. background-color: #888686;
  177. }
  178.  
  179. /*Info Section*/
  180.  
  181. #info_section {
  182. clear: both;
  183. background-color:
  184. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement