Header Ads

Header ADS

I Create Simple Log In Form Only Html&Css

Log in Form .....


Code.......

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login Form</title>
    <style>
        /* body{
            background: linear-gradient(#ff1111,#09ff46);
        } */
        .container{
            border2px solid ;
            width290px;
            height280px;
            background: linear-gradient(#ff523d,#09ff46);
            background-position: center;
            position: relative;
            margin20% auto;
        }
        h2{
            text-align: center;
        }
        input{
            /* text-align: center; */
            margin:10px 50px;
            padding6px;
            background: none;
            outline: none;
            border: none;
            border-bottom1px solid #fff;
        }
    .btn{
        font-size19px;
        padding4px;
        background: linear-gradient(#09ff46,red);
       margin-left100px;
    }
    </style>
</head>
<body>
    <div class="container">
<div class="logo"><h2>Log In</h2></div>
<div class="form">
   
    <input type="text"  placeholder="User Id " required>
    <input type="email"  placeholder="Email " required>
    <input type="phone"  placeholder="Phone " required>
    <div>
        <button class="btn">Log In</button>
    </div>
</div>
    </div>
</body>
</html>

No comments

Powered by Blogger.