Advertisement
Sythz

Untitled

Aug 17th, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Hanif Abyan Ayyasyi XI RPL 2</title>
  5. </head>
  6. <style type="text/css">
  7.     input#Button
  8.     {
  9.         color: lightblue;
  10.         background: grey;
  11.         border: 5px outset orange;
  12.         font-size: 16px;
  13.         font:italic;
  14.     }
  15.     .username
  16.     {
  17.         color: orange;
  18.         background-color: azure;
  19.         size: 10px;
  20.     }
  21.     .password
  22.     {
  23.         color: orange;
  24.         background: azure;
  25.         size: 10px;
  26.  
  27.     }
  28. </style>
  29. <body>
  30.     <form name="LOGIN">
  31.         <p>
  32.             <label for="Username" class="username">
  33.                 Username :
  34.             </label>
  35.             <input type="text">
  36.         </p>
  37.         <p>
  38.             <label for="Password" class="password">
  39.                 Password :
  40.             </label>
  41.             <input type="password" >
  42.         </p>
  43.         <p>
  44.             <input id="Button" type="Submit" value="LOGIN">
  45.         </p>
  46.     </form>
  47.  
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement