Advertisement
Guest User

Untitled

a guest
May 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>log in</title>
  4. <style>
  5. body{
  6. background-image: url(background.jpg);
  7. background-size: cover;
  8. }
  9. h1{
  10. color: white;
  11. text-align: center;
  12. }
  13. #login{
  14. width: 400px;
  15. height: 380px;
  16. background-color: black;
  17. opacity: .7;
  18. margin: 0 auto;
  19. margin-top: 60px;
  20. padding-left: 50px;
  21. }
  22. #login input[type="text"]{
  23. width: 200px;
  24. height: 25px;
  25. border: 0;
  26. color: white;
  27. font-weight: bolder;
  28.  
  29. }
  30. #login input[type="text"]{
  31. width: 200px;
  32. height: 25px;
  33. border: 0;
  34. color: white;
  35. font-weight: bolder;
  36. }
  37. form{
  38. color: white;
  39. font-size: 30px;
  40. }
  41. h2{
  42. font-size: 15px;
  43. color: white;
  44. }
  45. h2:visited{
  46. color: darkcyan;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div id="login">
  52. <h1>Log in</h1><br><br>
  53. <form>
  54. Username:<br>
  55. <input type="email" name="emial"><br><br>
  56. Password:<br>
  57. <input type="password" name="pass"><br><br>
  58. <input type="submit" name="login" value="Log in"><br><br>
  59. <h2><a href="#"><u>forget my password</u></a></h2>
  60.  
  61. </form>
  62.  
  63. </div>
  64. </body>
  65. </htm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement