Guest User

Untitled

a guest
Jul 19th, 2018
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title> A cool website </title>
  5. <style>
  6. body {
  7. padding: 16px;
  8. background-color: powderblue
  9. }
  10. #email, #username, #password, #dob {
  11. margin:8px,
  12. height:20px;
  13. width: 200px;
  14. border-radius: 4px;
  15. word-wrap: break-word;
  16. border-style: solid;
  17. border-width: 2px 2px 2px 2px;
  18. border-color: #777777
  19. }
  20.  
  21. #email:active, #username:focus, #password:focus, #dob:focus {
  22. border-color: #000000
  23. }
  24.  
  25. form {
  26. padding-top: 10px;
  27. text-align:center;
  28. background-color: pink;
  29. width:400px
  30.  
  31.  
  32. }
  33.  
  34. .form {
  35. border-style: solid;
  36. border-width: 4px 4px 4px 4px;
  37. border-color: #000000;
  38. border-radius:10px
  39. background-color: pink;
  40. text-align:center;
  41. width: 400px;
  42. }
  43.  
  44.  
  45. </style>
  46. </head>
  47.  
  48. <body>
  49. <marquee><h1> Hello, World! </h1></marquee>
  50. <h2 style="text-align:center"> Welcome to this E-commerce Website </h2>
  51. <h4 style="text-align:center"> A place to buy all the cool stuff you can brag about at very reasonable price </h4>
  52. <p> Please fill your details to create an account and unlock the door to coolness!!! </p>
  53. <form>
  54. <div class="form">
  55. <div ><input type="email" id="email" name="email" placeholder="Enter your existing E-mail"></div></br>
  56. <div ><input style="width:250px" id="username" type="text" name="username" placeholder="Enter a unique( and cool ) username"></div></br>
  57. <div ><input type="password" name="password" id="password" placeholder="Choose password"></div></br>
  58. <div ><input type="date" name="dob" id="dob" placeholder="Your Birth Date"></div></br>
  59. <p> Gender </p>
  60. <div id="male"><input type="radio" name="gender" value="male" checked>Male</div></br>
  61. <div id="female"><input type="radio" name="gender" value="female">Female</div></br>
  62. <div id="other"><input type="radio" name="gender" value="other">Other</div></br>
  63. <div id="submit_btn"><input type="submit" name="submit" value="Engage the coolness!!!"></div>
  64. </div>
  65. </form>
  66. </body>
  67.  
  68. </html>
Add Comment
Please, Sign In to add comment