DEV Community

Cover image for SIMPLE LOGIN PAGE HTML ...
SANTHOSH KUMAR
SANTHOSH KUMAR

Posted on

SIMPLE LOGIN PAGE HTML ...

<!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>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        main {
            border: 1px solid;
            height: 99vh;
            display: grid;
            grid-template-columns: 2fr 1.5fr;
        }

        .left-section {
            /* border: 1px solid orchid; */
        }
        .right-section{
            display: flex;
            justify-content: center;
            align-items: center;
        }


        .login{
            /* border: 1px solid green; */
            width: 85%;
            display: flex;
            flex-direction: column;
            gap: 20px;



        }
        input{
            padding: 10px;
            font-size: 10px;
            border-radius: 10;
            border: 1px solid black;

        }
        button{
            padding: 7px;
            border-radius: 25px;
            border: none;
        }
        button :hover{
            border: -1px solid blue;
        }
        #login-btn{
            background-color: red;

        }

    </style>

<body>
    <main>
        <div class="left-section">


            <img src="C:\Users\santh\OneDrive\Documents\vsa\car.gif" alt="">
        </div>


        <div class="right-section">

                <div class="login">
                    <h4> WELCOME TO BMW </h4>
                    <input type="text" placeholder="Email or phone number" />
                    <input type="password" placeholder="password" />
                    <button id="login-btn"> Login</button>
                    <button>Forgotten password ?</button>
                    <button>Create New account </button>

                </div>



            </div>
        </div>

    </main>
</body>

</html>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)