Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.83 KB | None | 0 0
  1. <html><head><style>
  2. @import url('https://fonts.googleapis.com/css?family=Montserrat:200&display=swap');
  3. @import url('https://fonts.googleapis.com/css?family=Raleway:300&display=swap');
  4. @import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
  5.  
  6. .title {
  7.   font-family: 'Montserrat', sans-serif;
  8. }
  9. .sub {
  10.   font-family: 'Raleway', sans-serif;
  11. }
  12. .ui {
  13.   font-family: 'Raleway', sans-serif;
  14. }
  15. input[type=text]{
  16.     width:100%;
  17.     border:2px solid #aaa;
  18.     border-radius:4px;
  19.     margin:8px 0;
  20.     outline:none;
  21.     padding:8px;
  22.     box-sizing:border-box;
  23.     transition:.3s;
  24.   }
  25.  
  26.   input[type=text]:focus{
  27.     border-color:dodgerBlue;
  28.     box-shadow:0 0 8px 0 dodgerBlue;
  29.   }
  30. input[type=password]{
  31.     width:100%;
  32.     border:2px solid #aaa;
  33.     border-radius:4px;
  34.     margin:8px 0;
  35.     outline:none;
  36.     padding:8px;
  37.     box-sizing:border-box;
  38.     transition:.3s;
  39.   }
  40.  
  41.   input[type=password]:focus{
  42.     border-color:dodgerBlue;
  43.     box-shadow:0 0 8px 0 dodgerBlue;
  44.   }
  45.  
  46. </style></head>
  47.     <body>
  48.     <div style="background-color:#383838;padding: 15px; width:350px; height:340px; border:3px solid #73AD21; position:absolute; left:300px; top:200px;">
  49.         <h1 style="color:#E8E8E8; text-align:center; font-size:40px;"><span class="title">Welcome!</span></h1>
  50.         <h2 style="color:#B0B0B0; text-align:center; font-size:15px;"><span class="sub">Enter the required information to continue</span></h2><br>
  51.         <b><p style="font-size:90%;"><font color="#BEBEBE"><span class="ui">USERNAME</span></font></p></b>
  52.         <input type="text" value="" id="username" placeholder="Enter usernmane here: "><br><br>
  53.         <input type="submit" value="Submit">
  54.     </div>
  55.    
  56.     <div style="height:1000px; border-left: 6px red solid; right: 400px; position:absolute;"></div>    
  57.    
  58.     </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement