Advertisement
Guest User

terminals are cool

a guest
Oct 20th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.     <title>Welcome back!</title>
  4.     <style>
  5.         p, h1, h2, h3, li {
  6.             font-family: monospace;
  7.             color: #FFFFFF;
  8.             padding: 1px;
  9.         }
  10.         a:link, a:visited, a:active, a:hover {
  11.             font-family: monospace;
  12.             color: #333333;
  13.             padding: 1px;
  14.         }
  15.         body {
  16.             background-image: url('bkgrnd.jpg');
  17.             background-repeat: no-repeat;
  18.             background-size: cover;
  19.         }  
  20.         input {
  21.             width: 183px;
  22.             padding: 1px;
  23.         }
  24.         #main {
  25.             position: absolute;
  26.             top: 8px;
  27.             left: 16px;
  28.             border: 3px solid black;
  29.         }
  30.         #search {
  31.             position: absolute;
  32.             top: 90px;
  33.             left: 16px;
  34.             border:3px solid #98971a;
  35.         }
  36.         #links {
  37.             position: absolute;
  38.             top: 8px;
  39.             left: 220px;
  40.             border: 3px solid black;
  41.         }
  42.     </style>
  43. </head>
  44. <body>
  45.     <div id='main'>
  46.         <h1>Welcome Back!</h1>
  47.     </div>
  48.     <div id='search'>
  49.         <form action="https://google.com/search" method="get">
  50.             <input type="text" name="q">
  51.         </form>
  52.     </div>
  53.     <div id='links'>
  54.         <p>Internet Resources:</p>
  55.         <ul>
  56.             <li><a href="https://github.com/">GitHub</a></li>
  57.         </ul>
  58.     </div>
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement