Advertisement
lemansky

Untitled

Feb 22nd, 2022
1,008
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5.19 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.         *{
  9.             box-sizing: border-box;
  10.         }
  11.  
  12.         body{
  13.             margin:0;
  14.             font-family: "Segoe UI", "Roboto";
  15.         }
  16.  
  17.         .container{
  18.             max-width:1320px;
  19.             margin: 0 auto;
  20.         }
  21.  
  22.         .row{
  23.             display:flex;
  24.             flex-direction: row;
  25.         }
  26.  
  27.         .row>*{
  28.             max-width:100%;
  29.             width:100%;
  30.         }
  31.  
  32.         .text-white{
  33.             color:white;
  34.         }
  35.  
  36.         .text-blue{
  37.             color: rgb(13, 110, 253);
  38.         }
  39.  
  40.         .bg-blue{
  41.             background: rgb(13, 110, 253)
  42.         }
  43.  
  44.         .bg-green{
  45.             background: rgb(25, 135, 84);
  46.         }
  47.  
  48.         .text-green{
  49.             color:  rgb(25, 135, 84);
  50.         }
  51.         .col-4{
  52.             width:33.33333333%;
  53.             padding:0 12px;
  54.         }
  55.  
  56.         .col-8{
  57.             width:66.66666667%;
  58.             padding:0 12px;
  59.         }
  60.  
  61.         .col-6{
  62.             width:50%;
  63.             padding:0 12px;
  64.         }
  65.  
  66.         .card{
  67.             position: relative;
  68.             display: flex;
  69.             flex-direction: column;
  70.             min-width: 0;
  71.             word-wrap: break-word;
  72.             background-clip: border-box;
  73.             border: 1px solid rgba(0, 0, 0, 0.125);
  74.             border-radius: 0.25rem;
  75.         }
  76.  
  77.         .card-header{
  78.             padding: 8px 16px;
  79.             border-radius:4px;
  80.             border-bottom: 1px solid gray;
  81.         }
  82.  
  83.  
  84.         .card-body{
  85.             padding:16px;
  86.         }
  87.  
  88.         .heading{
  89.             font-size:56px;
  90.             font-weight:300;
  91.             line-height: 1.2;
  92.         }
  93.  
  94.         .btn{
  95.           display: inline-block;
  96.           text-align: center;
  97.           vertical-align: middle;
  98.           border: 1px solid transparent;
  99.           padding: 8px 12px;
  100.           border-radius: 4px;
  101.           cursor:pointer;
  102.           text-decoration:none;
  103.         }
  104.  
  105.  
  106.         .btn-blue{
  107.             color:white;
  108.             background-color: #0a58ca;
  109.             border-color: #0a53be;
  110.         }
  111.  
  112.         .btn-yellow{
  113.             color: #000;
  114.             background-color: #ffcd39;
  115.             border-color: #ffc720;
  116.         }
  117.  
  118.         .title{
  119.             font-size:48px;
  120.             font-weight:300;
  121.             line-height: 1.2;
  122.         }
  123.  
  124.         .fst-italic{
  125.             font-style:italic;
  126.         }
  127.  
  128.         .p-40{
  129.             padding:40px;
  130.         }
  131.  
  132.         .p-16{
  133.             padding:16px;
  134.         }
  135.  
  136.         .mt-40{
  137.             margin-top:40px;
  138.         }
  139.         .mx-8{
  140.             margin-left:8px;
  141.             margin-right:8px;
  142.         }
  143.         .nav{
  144.             list-style-type:none;
  145.             margin:0px;
  146.             display:flex;
  147.             line-height:1.5;
  148.         }
  149.  
  150.         .nav-link{
  151.             display:block;
  152.             padding:8px 16px;
  153.             text-decoration: none;
  154.         }
  155.  
  156.         .nav-item{
  157.             border-bottom:solid 1px white;
  158.             border-radius:3px;
  159.         }
  160.  
  161.         .justify-content-right{
  162.             justify-content:end;
  163.         }
  164.  
  165.         .round-border{
  166.             border-radius:4px;
  167.         }
  168.  
  169.         .badge{
  170.             padding: 3px 6px;
  171.             font-size: 12px;
  172.             font-weight: bold;
  173.             color: #fff;
  174.             border-radius: 4px;
  175.             background:gray;
  176.         }
  177.         .heading{
  178.             font-weight:bold;
  179.             font-size:32px;
  180.             margin-bottom:12px;
  181.         }
  182.     </style>
  183. </head>
  184. <body>
  185.     <div class="container">
  186.         <div class="row">
  187.             <ul class="nav bg-green round-border p-16 justify-content-right">
  188.                 <li class="nav-item mx-8">
  189.                     <a href="" class="nav-link text-white">Homepage</a>
  190.                 </li>
  191.                 <li class="nav-item mx-8">
  192.                     <a href="" class="nav-link text-white">About us</a>
  193.                 </li>
  194.                 <li class="nav-item mx-8">
  195.                     <a href="" class="nav-link text-white">Services</a>
  196.                 </li>
  197.                 <li class="nav-item mx-8">
  198.                     <a href="" class="nav-link text-white">Contact us</a>
  199.                 </li>
  200.             </ul>
  201.         </div>
  202.         <div class="row mt-40">
  203.             <div class="col-6">
  204.                 <div class="card">
  205.                     <div class="card-header bg-green text-white"> Our Agenda </div>
  206.                     <div class="card-body">
  207.                         <h1 class="title">
  208.                             Help the community
  209.                         </h1>
  210.                         <div class="mt-40">
  211.                             <p class="text-green">Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa ipsa cumque optio voluptatum non facere porro ea velit</p>
  212.                             <a href="#" class="btn btn-blue">Find out how</a>
  213.                             <a href="#" class="btn btn-yellow">Check our Linktr.ee</a>
  214.                         </div>
  215.                     </div>
  216.                 </div>
  217.             </div>
  218.             <div class="col-6">
  219.                 <div class="card">
  220.                     <div class="card-header bg-green text-white"> Meet the team </div>
  221.                     <div class="card-body">
  222.                         <h1 class="title">
  223.                             Hear the inspiring story
  224.                         </h1>
  225.                         <p class="mt-40">Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa ipsa cumque optio voluptatum non facere porro ea velit, iure ipsam quaerat expedita deserunt quidem ratione, atque quod recusandae molestias dignissimos. <a href="#" class="badge"> Read more </a></p>
  226.                     </div>
  227.                 </div>
  228.             </div>
  229.  
  230.         </div>
  231.         <div class="row mt-40">
  232.             <div class="col-4">
  233.                 <div class="heading text-green">
  234.                     Features
  235.                 </div>
  236.                 <ul>
  237.                     <li class="fst-italic text-blue">
  238.                         Agile development
  239.                     </li>
  240.                     <li class="fst-italic text-blue">
  241.                         Senior expertise
  242.                     </li>
  243.                     <li class="fst-italic text-blue">
  244.                         Multicultural methodology
  245.                     </li>
  246.                     <li class="fst-italic text-blue">
  247.                         Guaranteed upkeep
  248.                     </li>
  249.                 </ul>
  250.             </div>
  251.             <div class="col-8 bg-blue p-40">
  252.                 <svg width="100%" height="100">
  253.                     <rect width="100%" height="100%" fill="#868e96"></rect>
  254.                     <text x="40%" y="50%" fill="#dee2e6">
  255.                         Responsive image
  256.                     </text>
  257.                 </svg>
  258.             </div>
  259.         </div>
  260.     </div>
  261. </body>
  262. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement