Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <link rel="stylesheet" href="style.css">
  6. <script src="script.js"></script>
  7. <style>
  8. input[type=text],input[type=password]{
  9. width:100%;
  10. color:white;
  11. background-color:#3cbc8d;
  12. padding:5px;
  13. border : 1px solid green;
  14. }
  15. input[type=text]:focus,input[type=password]:focus{
  16. background-color:lightblue;
  17. border-bottom:red solid 1px;
  18. }
  19.  
  20. </style>
  21.  
  22.  
  23. </head>
  24.  
  25. <body>
  26. Adı:<input type="text">
  27. Soyadı: <input type="text">
  28. Şifre: <input type="password">
  29. <input type="submit" value="Gonder">
  30. </body>
  31.  
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement