Advertisement
Guest User

Untitled

a guest
May 10th, 2016
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <title>HTML Tutorial</title>
  6.         <style type="text/css">
  7.  
  8.             body {
  9.                 margin: 10px;
  10.                 font-family: 'Trebuchet MS';
  11.                 height: 100%;
  12.             }
  13.  
  14.             h1 {
  15.                 margin: 0 0 10px 0;
  16.             }
  17.  
  18.             ul {
  19.                 float: left;
  20.                 height: 100%;
  21.                 margin-right: 10px;
  22.                 padding-left: 0;
  23.                 margin-top: 0;
  24.                 max-width: 230px;
  25.                 position: relative;
  26.                 height: 100%;
  27.             }
  28.  
  29.             li {
  30.                 list-style-type: none;
  31.             }
  32.  
  33.             p {
  34.                 margin-top: 0;
  35.             }
  36.  
  37.         </style>
  38.     </head>
  39.     <body>
  40.  
  41.         <div class="header">
  42.             <h1>ООО &laquo;Агросервис&raquo;</h1>
  43.         </div>
  44.  
  45.         <ul>
  46.             <li><a href="">Главная</a></li>
  47.             <li><a href="">Продукты</a></li>
  48.             <li><a href="">О нас</a></li>
  49.             <li><a href="">Контакты</a></li>
  50.         </ul>
  51.  
  52.         <article>
  53.             <p>
  54.                 Мы являемся лидирующей компанией в нашей отрасли! Мы на голову обходим всех наших конкурентов. Динамика нашего роста не имеет ни границ, ни пределов. Сопротивление бесполезно.
  55.             </p>
  56.             <p>
  57.                 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
  58.                 tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
  59.                 quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
  60.                 consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
  61.                 cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
  62.                 proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  63.             </p>
  64.         </article>
  65.  
  66.     </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement