Advertisement
Guest User

Untitled

a guest
Aug 25th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>embedded2</title>
  6.     <style>
  7.         input#tombol {
  8.             color: aqua;
  9.             background: salmon;
  10.             border: 2px outset #bbd16d;
  11.             font-size: 14px;
  12.             font: bold;
  13.         }
  14.         .username {
  15.             color: blue;
  16.             background: aqua;
  17.             size: 12px;
  18.         }
  19.     </style>
  20. </head>
  21. <body>
  22.     <p>
  23.         <form action="" name="LOGIN">
  24.             <label for="username" class="username">Username :</label>
  25.             <input type="text">
  26.             </p>
  27.         <p>
  28.             <label for="password">Password :</label>
  29.             <input type="password">
  30.         </p>
  31.         <p>
  32.             <input type="submit" id="tombol" value="Login">
  33.         </p>
  34.         </form>
  35.    
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement