HTMLify

rcck3uh1ux.html
Views: 63 | Author: dakshbadal1379
<!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>

Comments