SIGN UP PAGE

Create a Sign Up Page Using HTML and CSS 




SOURCE CODE : -

HTML :- 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login Page</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    
    <div class="login-wrapper">
        <div class="login-img">
            <img src="3.jpg" alt="">
        </div>
        <div class="login-form">
            <h2>Sign Up</h2>

            <form action="">
                <div class="form-group">
                    <label>E-mail</label>
                    <input type="email" placeholder="example@gmail.com"/>
                </div>

                <div class="form-group">
                    <label>Password</label>
                    <input type="password" placeholder="************"/>
                </div>

                <div class="form-group button-holder">
                    <div>
                        <button type="submit">Sign Up</button>
                    </div>
                    <a href="#">Already have an account? Log In</a>
                </div>
            </form>


        </div>
    </div>

</body>
</html>



CSS:-


*{
    padding0;
    margin0;
    box-sizingborder-box;
    font-family'Trebuchet MS''Lucida Sans Unicode''Lucida Grande''Lucida Sans'Arialsans-serif;
}

body{
    background-imageurl("53.png");
    background-sizecover;
    background-repeatno-repeat;
    displayflex;
    align-itemscenter;
    justify-contentcenter;
    min-height100vh;
    overflowhidden;

}

.login-wrapper{

    width60%;
    displaygrid;
    grid-template-columnsrepeat(21fr);
    backgroundtransparent;
    border-radius8px;
    overflowhidden;

    box-shadow0px 0px 15px 5px rgba(0,0,0,0.4);
}

.login-img img{

    width100%;
     
}

.login-form{
    padding2.5rem;
}

.login-form h2{
    margin-bottom1.4rem;
}

.form-group{
    margin-bottom1.2rem;
}

.form-group label{
    displayblock;
    margin-bottom.5rem;

}

.form-group input{
    displayblock;
    width100%;
    height40px;
    padding.5rem;
    border1px solid #ccc;
    border-radius20px;
    outlinenone;

}

.button-holder{
    text-aligncenter;

}

.button-holder button{
    padding.7rem 2rem;
    background#31ffe0;
    color#000;
    bordernone;
    border-radius:  20px;
    margin-bottom1rem;
    outlinenone;
    transition0.2s linear;
    text-transformuppercase;


}

.button-holder button:hover{

    background#01ceaf;
}

.button-holder a{
    text-decorationnone;
    color#000;
}


Comments

Popular posts from this blog

Clock In HTML , CSS and JavaScript

Hover Effect With CSS

Neumorphism Button