Advertisement
Antuistiqra

Untitled

Jan 22nd, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Embedded CSS atau Internal  (Yusuf A/ XI RPL 2)</title>
  5.     <style type="text/css">
  6.         input #tombol(
  7.             color: aqua;
  8.             background: Salmon;
  9.             border: 2px outset #bbd12d;
  10.             font-size :14px
  11.             font: bold;
  12.             )
  13.         .username{
  14.             color: blue;
  15.             background: aqua;
  16.             size: 12px
  17.         }
  18.     </style>
  19. </head>
  20. <body>
  21. <p><form name="LOGIN">
  22.     <label for="username" class="username">Username</label>
  23.     <input type="text">
  24. </p>
  25. <p><label for="Password">Password</label></p>
  26. <input type="Password">
  27. </p>
  28. <p><input id="tombol" type="submit" value="Login"></p>
  29. </form></p>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement