LegoDrifter

Challenge from Brad

Jul 2nd, 2020
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="css/style.css">
  9. <title>CSS Positioning</title>
  10. </head>
  11. <body>
  12. <div id="box">
  13. <br>
  14. <h2>Sign Up</h2>
  15. <p>It's free and only takes a minute</p>
  16. <ul>
  17. <li><label>First Name</label></li>
  18. <input type="text" name="firstName">
  19. <li><label>Last Name</label></li>
  20. <input type="text" name="lasttName">
  21.  
  22. <li><label>Email</label></li>
  23. <input type="email">
  24. <li><label>Password</label></li>
  25. <input type="password">
  26. <li><label>Confirm Password</label></li>
  27. <input type="password">
  28. <br>
  29. <button type="button">Sign Up</button>
  30. <br>
  31. </ul>
  32. <p id="edit">By clicking the Sign Up button, you agree to our<br>
  33. <a href="#">Terms & Conditions</a> and <a href="#">Privacy Policy</a> </p>
  34. </div>
  35. <p id="fs">Already have an account?<a href="#"> Login here</a> </p>
  36.  
  37.  
  38.  
  39. </body>
  40. </htm
  41.  
  42. body
  43. {
  44. background-color: #4c6ca0;
  45. font-family: Arial,sans-serif;
  46. margin-top: 200px;
  47. }
  48. ul
  49. {
  50. list-style: none;
  51. line-height: 1.7em;
  52. padding-left: 15px;
  53. padding-right: 15px;
  54.  
  55. }
  56. li
  57. {
  58. font-size: 13px;
  59. color: dimgray;
  60. }
  61. h2
  62. {
  63.  
  64. margin-bottom: 10px;
  65. text-align: center;
  66.  
  67. }
  68. #edit
  69. {
  70. font-size: 12px;
  71. padding-right: 10px;
  72. padding-left: 10px;
  73. }
  74. p
  75. {
  76. text-align: center;
  77. margin-bottom: 0px;
  78. margin-top: 0px;
  79.  
  80. }
  81. button
  82. {
  83. margin-top: 10px;
  84. width: 248px;
  85. color: white;
  86. background-color: turquoise;
  87. border: none;
  88. height: 25px;
  89. border-radius: 4px;
  90. font-size: 12px;
  91. }
  92. input
  93. {
  94. width: 240px;
  95. border-radius: 3px;
  96. border: 1px solid lightgrey;
  97. height: 22px;
  98.  
  99. }
  100. #fs
  101. {
  102. font-size: 14px;
  103. color: white;
  104. }
  105. #fs a
  106. {
  107. text-decoration: none;
  108. color: turquoise;
  109. }
  110. #box
  111. {
  112. width: 280px;
  113. height: 480px;
  114. background-color: white;
  115. margin: auto;
  116. box-sizing: border-box;
  117. }
Add Comment
Please, Sign In to add comment