Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>List</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="css/searchbox.css">
- <script src="https://kit.fontawesome.com/6cc53d1765.js" crossorigin="anonymous"></script>
- <style type="text/css">
- body {
- background-color: #1d1d27;
- }
- .ignitionText {
- margin-top: 10px;
- animation: move 2s linear infinite;
- background-image: linear-gradient(to right, #fe8a71, #f6cd61, #3da4ab, #0e9aa7, #fe8a71);
- background-size: 200% auto;
- font-size: 40px;
- font-weight: 700;
- letter-spacing: 1px;
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- font-family: Arial;
- }
- .box-border {
- display: inline-block;
- border: 1px solid;
- padding: 10px;
- height: 80px;
- width: 100%;
- }
- .image-position {
- display: inline-block;
- width: 52px;
- height: 52px;
- }
- .info-text {
- display: inline-block;
- color: white;
- list-style: none;
- }
- </style>
- </head>
- <body>
- <center>
- <img src="ignitionLogo.svg" width="90" style="padding-top: 30px;">
- <br>
- <h1 class="ignitionText">List</h1>
- <br>
- </center>
- <div class="wrap">
- <div class="search">
- <input type="text" class="searchTerm" placeholder="What are you looking for?">
- <button type="submit" class="searchButton">
- <i class="fa fa-search"></i>
- </button>
- </div>
- </div>
- <hr>
- <div class="box-border">
- <div class="image-position">
- <img src="ignitionLogoImage.png" alt="asdasd" width="100%" height="100%">
- </div>
- <ul class="info-text">
- <li>Item 1</li>
- <li>Item 2</li>
- <li>Item 3</li>
- </ul>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment