wildanfuady

Untitled

Nov 3rd, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Login</title>
  5. <link rel="stylesheet" href="../latihan/fontawesome/css/all.min.css">
  6. <style>
  7. body{
  8. background: #14214d;
  9. }
  10. .left{
  11. margin-left: 200px;
  12. margin-top: 200px;
  13. width: 500px;
  14. height: 400px;
  15. background: #44c7f5;
  16. float: left;
  17. color: white;
  18. font-family: Arial, Helvetica, sans-serif;
  19. padding-left: 50px;
  20. padding-top: 100px;
  21. }
  22. .left h1{
  23. font-size: 40px;
  24. }
  25. .left input[type=radio] {
  26. border: 0px;
  27. width: 30px;
  28. height: 2em;
  29. border: none;
  30. outline: none;
  31. }
  32. .left span{
  33. font-size: 30px;
  34. margin-top: 0px;
  35. }
  36. .right{
  37. padding-left: 50px;
  38. padding-top: 100px;
  39. margin-top: 200px;
  40. width: 500px;
  41. height: 400px;
  42. background: #ffffff;
  43. float: left;
  44. }
  45. .right h1{
  46. color: #44c7f5;
  47. font-family: Arial, Helvetica, sans-serif;
  48. }
  49. .right input[type=text]{
  50. width: 300px;
  51. padding: 20px;
  52. border-left: transparent;
  53. border-right: transparent;
  54. border-top: transparent;
  55. border-bottom: 1px solid #8a8686;
  56. }
  57. </style>
  58. </head>
  59. <body>
  60. <div class="left">
  61. <h1>Login Static Form</h1>
  62. <input type="radio"> <span>Pilihan 1</span>
  63. <br>
  64. <input type="radio"> <span>Pilihan 1</span>
  65. <br>
  66. <input type="radio"> <span>Pilihan 1</span>
  67. </div>
  68. <div class="right">
  69. <h1>Login</h1>
  70. <input type="text" placeholder="Email">
  71. <br>
  72. <input type="text" placeholder="Password">
  73. </div>
  74. </body>
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment