Advertisement
Irhamghan22

Untitled

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