Advertisement
lemansky

Untitled

Nov 3rd, 2021
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7.     <style>
  8.         .row{
  9.             display:flex;
  10.             flex-direction: row;
  11.             margin-bottom:2px;
  12.         }
  13.         .row > div{
  14.             width:155px;           
  15.             padding:80px 15px 80px 15px;
  16.             margin-right:2px;
  17.         }
  18.         .red{
  19.             background:#b90000;
  20.         }
  21.         .green{
  22.             background:#4c9c01;
  23.         }
  24.         .blue{
  25.             background:#0081cc;
  26.         }
  27.         .purple{
  28.             background:#4902a7;
  29.         }
  30.         .yellow{
  31.             background:#f3e300;
  32.         }
  33.         .orange{
  34.             background:#ffa600;
  35.         }
  36.     </style>   
  37. </head>
  38. <body>
  39.     <div class="row">
  40.         <div class="red ">
  41.             1
  42.         </div>
  43.         <div class="green ">
  44.             2
  45.         </div>
  46.         <div class="blue ">
  47.             3
  48.         </div>
  49.     </div>
  50.     <div class="row">
  51.         <div class="purple">
  52.             4
  53.         </div>
  54.         <div class="yellow">
  55.             5
  56.         </div>
  57.         <div class="orange">
  58.             6
  59.         </div>
  60.     </div>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement