123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- * {
- box-sizing: border-box;
- }
- body {
- margin: 0;
- padding: 10px;
- }
- input, button{
- width: 100%;
- font-size: 25px;
- }
- p {
- margin: 0;
- padding: 15px 0 5px;
- text-transform: uppercase;
- font-weight: bold;
- font-size: 20px;
- }
- </style>
- </head>
- <body>
- <div id="formContainer"></div>
- <script src="js.js"></script>
- </body>
- </html>
|