index.html 692 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. * {
  9. box-sizing: border-box;
  10. }
  11. body {
  12. margin: 0;
  13. padding: 10px;
  14. }
  15. input, button{
  16. width: 100%;
  17. font-size: 25px;
  18. }
  19. p {
  20. margin: 0;
  21. padding: 15px 0 5px;
  22. text-transform: uppercase;
  23. font-weight: bold;
  24. font-size: 20px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="formContainer"></div>
  30. <script src="js.js"></script>
  31. </body>
  32. </html>