Advertisement
Guest User

html

a guest
Oct 18th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Document</title>
  6.     <style>
  7.     li{
  8.         display:inline-block;
  9.         margin:0px 15px;
  10.     }
  11.     .column{
  12.         display:inline-block;
  13.         vertical-align:middle;
  14.     }
  15.     #header{
  16.         background:#7ac141;
  17.         padding: 30px 75px 30px 75px;
  18.         border-bottom:solid 10px #dfdfdf;
  19.     }
  20.     li a{
  21.         color:white;
  22.         text-decoration: none;
  23.         font-weight: bold;
  24.     }
  25.     input[type=text]{
  26.         background:#a3d47b;
  27.         border:none;
  28.         padding:3px;
  29.         margin-left:75px;
  30.         color:white;
  31.         width:180px;
  32.     }
  33.     input[type=button]{
  34.         background:#7ac141;
  35.         border:solid 1px white;
  36.         color:white;
  37.     }
  38.     .left{
  39.         width:350px;
  40.         margin-right:75px;
  41.     }
  42.     .right{
  43.         width:420px;
  44.     }
  45.     #main{
  46.         padding:75px;
  47.     }
  48.     h1{
  49.         font-family: Georgia;
  50.         font-size:40px;
  51.         color:#7ac141;
  52.         font-weight:normal;
  53.     }
  54.     .left a{
  55.         color:white;
  56.         text-decoration:none;
  57.         display:inline-block;
  58.         padding:10px 15px;
  59.         margin-right:20px;
  60.         background: #6ab357;
  61.     }
  62.     .left a:hover{
  63.         background: #3e786a;
  64.     }
  65. </style>
  66. </head>
  67. <body>
  68.     <div id="header">
  69.         <div class="column">
  70.             <a href="https://www.google.bg">
  71.                 <img src="https://placehold.it/180x35" alt="">
  72.             </a>
  73.         </div>
  74.         <div class="column">
  75.             <ul>
  76.                 <li>
  77.                     <a href="#">Features</a>
  78.                 </li>
  79.                 <li>
  80.                     <a href="#">Industries</a>
  81.                 </li>
  82.                 <li>
  83.                     <a href="#">Results</a>
  84.                 </li>
  85.                 <li>
  86.                     <a href="#">Support</a>
  87.                 </li>
  88.                 <li>
  89.                     <a href="#">Contact</a>
  90.                 </li>
  91.             </ul>
  92.         </div>
  93.         <div class="column">
  94.             <input type="text" value="Search">
  95.             <input type="button" value="Go">
  96.         </div>
  97.     </div>
  98.     <div id="main">
  99.         <div class="column left">
  100.             <h1>Easy to use asset management and workflow software</h1>
  101.             <p>
  102.                 <strong>Brand &trade; </strong>
  103.                 Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque assumenda nemo, inventore fugiat doloribus excepturi tempora error qui praesentium consequatur dolorum totam debitis eos velit voluptatum, consequuntur maiores. Doloremque, officiis.
  104.             </p>
  105.  
  106.             <a href="">Find out more</a>
  107.             <a href="">Find out more</a>
  108.  
  109.         </div>
  110.         <div class="column right">
  111.             <iframe width="420" height="345" src="https://www.youtube.com/embed/n5ZhKyOxZns" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  112.         </div>
  113.     </div>
  114.  
  115. </body>
  116. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement