HTMLify
rcck3uh1ux.html
Views: 391 | Author: dakshbadal1379
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> <style> body{ font-family: "Montserrat", sans-serif; box-sizing: border-box; max-width: 600px; } section{ height: 9vh; } .content{ background-color: #302b63; /* border: 10px solid blue; */ max-width: 700px; margin: 30px 470px 10px 450px; height: 50vh; padding: 50px 6em 150px 5em; border-radius: 5em; } h1{ text-align: center; } input{ outline: none; border: none; margin-top: 10px; border-radius: 8px; width: 16rem; height: 3em; } #ghj{ width: 9em; height: 2em; margin-left: 30px; margin-top: 25px; background: #fff; color: #24243e; font-size: 22px; font-weight: 700; } ::placeholder{ /* color: red; */ font-family: "Montserrat", sans-serif; font-weight: 600; padding: 10px; } h1{ color: white; } </style> </head> <body> <section> <div class="content"> <h1>Sign Up</h1><br> <input type="text" name="" id="" placeholder="Name" maxlength="20" required><br> <input type="text" name="" id="" placeholder="Username" maxlength="20" required><br> <input type="password" name="" id="" placeholder="Password" maxlength="20" required><br> <input type="password" name="" id="" placeholder="Confirm password" maxlength="20" required><br> <input type="text" name="" id="" placeholder="Mob no" maxlength="20" required><br> <input type="button" value="Submit" name="" id="ghj" size="20"> </div> </section> </body> </html> |