Guest User

Untitled

a guest
Mar 26th, 2020
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <title>List</title>
  5.   <meta charset="utf-8">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1">
  7.   <link rel="stylesheet" href="css/searchbox.css">
  8.   <script src="https://kit.fontawesome.com/6cc53d1765.js" crossorigin="anonymous"></script>
  9.   <style type="text/css">
  10.     body {
  11.       background-color: #1d1d27;
  12.     }
  13.     .ignitionText {
  14.       margin-top: 10px;
  15.       animation: move 2s linear infinite;
  16.       background-image: linear-gradient(to right, #fe8a71, #f6cd61, #3da4ab, #0e9aa7, #fe8a71);
  17.       background-size: 200% auto;
  18.       font-size: 40px;
  19.       font-weight: 700;
  20.       letter-spacing: 1px;
  21.       -webkit-background-clip: text;
  22.       -webkit-text-fill-color: transparent;
  23.       font-family: Arial;
  24.     }
  25.     .box-border {
  26.       display: inline-block;
  27.       border: 1px solid;
  28.       padding: 10px;
  29.       height: 80px;
  30.       width: 100%;
  31.     }
  32.     .image-position {
  33.       display: inline-block;
  34.       width: 52px;
  35.       height: 52px;
  36.     }
  37.     .info-text {
  38.       display: inline-block;
  39.       color: white;
  40.       list-style: none;
  41.     }
  42.   </style>
  43. </head>
  44. <body>
  45.     <center>
  46.       <img src="ignitionLogo.svg" width="90" style="padding-top: 30px;">
  47.       <br>
  48.       <h1 class="ignitionText">List</h1>
  49.       <br>
  50.     </center>
  51.     <div class="wrap">
  52.        <div class="search">
  53.           <input type="text" class="searchTerm" placeholder="What are you looking for?">
  54.           <button type="submit" class="searchButton">
  55.             <i class="fa fa-search"></i>
  56.          </button>
  57.        </div>
  58.     </div>
  59.     <hr>
  60.     <div class="box-border">
  61.       <div class="image-position">
  62.         <img src="ignitionLogoImage.png" alt="asdasd" width="100%" height="100%">
  63.       </div>
  64.       <ul class="info-text">
  65.         <li>Item 1</li>
  66.         <li>Item 2</li>
  67.         <li>Item 3</li>
  68.       </ul>
  69.     </div>
  70. </body>
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment