lemansky

Untitled

Nov 18th, 2021 (edited)
922
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.80 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <meta charset="UTF-8">
  4.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5.         <title>Задача 1</title>
  6.         <style>
  7.             .container{
  8.                 display:flex;
  9.                 flex-direction: row;
  10.                 width:1200px;
  11.             }
  12.             .column-left{
  13.                 background:lightyellow;
  14.                 padding:20px;
  15.             }
  16.             .menu{
  17.                 list-style-type:square;
  18.             }
  19.             .menu-links{
  20.                 padding:10px;
  21.                 color: red;
  22.                 font-weight:bold;
  23.             }
  24.             .content{
  25.                 background:coral;
  26.                 padding:10px;
  27.             }
  28.             .item{
  29.                 border-bottom: solid 2px;
  30.                 margin-bottom:5px;
  31.                 display:flex;
  32.                 flex-direction: row;
  33.             }
  34.             .item-img{
  35.                 margin-right:15px;
  36.             }
  37.             .item-text{
  38.                 text-align:center;
  39.             }
  40.             .column-right{
  41.                 background:lightseagreen;
  42.                 padding:20px;
  43.             }
  44.             .title{
  45.                 text-align:center;
  46.             }
  47.         </style>
  48.     </head>
  49.     <body>
  50.         <div class="">
  51.             <div class="">
  52.                 <ul class="">
  53.                     <li>
  54.                         <a href="#" class=""> Link 1</a>
  55.                     </li>
  56.                     <li>
  57.                         <a href="#" class=""> Link 2</a>
  58.                     </li>
  59.                     <li>
  60.                         <a href="#" class=""> Link 3</a>
  61.                     </li>
  62.                     <li>
  63.                         <a href="#" class=""> Link 4</a>
  64.                     </li>
  65.                 </ul>
  66.             </div>
  67.             <div class="">
  68.                 <div class="">
  69.                     <div class=""> <img src="http://placehold.it/100x50"/> </div>
  70.                     <div class="">
  71.                         <p>Иван Иванович Ивановски</p>
  72.                         <p>Отбор "Rush B" </p>
  73.                     </div>
  74.                 </div>
  75.                 <div class="">
  76.                     <div class=""> <img src="http://placehold.it/100x50"/> </div>
  77.                     <div class="">
  78.                         <p>Игор "зажигалка" Игорович</p>
  79.                         <p>Отбор "Rush B" </p>
  80.                     </div>
  81.                 </div>
  82.             </div>
  83.             <div class="">
  84.                 <h2 class="">
  85.                     Subscribe
  86.                 </h2>
  87.                 <p>
  88.                     contact us @ hotheads@mail.ru
  89.                 </p>
  90.             </div>
  91.         </div>
  92.     </body>
  93. </html>
Add Comment
Please, Sign In to add comment