Skip to main content

Web 1 Login

 <!DOCTYPE html>

<html lang="en">


<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Login V19</title>

    <style>

        * {

            box-sizing: border-box;

        }


        body {

            /* justify-content: center; */

            /* align-items: center; */

            margin: 0px;

            padding: 0px;

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            color: black;

            background-color: #e9faff;

            font-weight: bold;

        }


        .cont {

            /* border: 2px solid #db4130; */

            /* text-decoration: none; */

            background: #fff;

            position: absolute;

            top: 12.5%;

            left: 25%;

            width: 500px;

            padding-left: 55px;

            padding-right: 55px;

            padding-top: 55px;

            padding-bottom: 55px;

            border-radius: 10px;

            box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);

            -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);



        }


        h1 {

            text-align: center;

            font-weight: 400;

            color: #918d8d;

        }


        .input {

            height: 68px;

            width: 100%;

            padding: 0px 25px 0px 25px;

            line-height: 2px;

            font-size: 14px;

            border: 1px solid #e0dcdc;

            background: transparent;

        }


        #submit {

            margin: 20px auto;

            color: whitesmoke;

            background-color: #4272d7;

            height: 60px;

            border-radius: 4px;

            border: none;

            outline: none;



        }


        #submit:hover {

            background-color: black;

            cursor: pointer;

        }


        .bottom {

            text-size-adjust: 25px;

            text-align: center;

            text-decoration: none;

            color: #999999;

        }


        #t1 {

            margin-top: 35px;

            margin-bottom: 4px;

        }


        a {

            text-decoration: none;

            color: #4272d7;

        }


        a:hover {

            text-decoration: underline;

            /* cursor: copy; */

        }

        

        #email{

            border-bottom:none;

        }

    </style>

</head>


<body>

    <div class="cont">

        <h1>

            Account Login

        </h1>

        <div>

            <input type="text" class="input" id="email" placeholder="Email">

        </div>


        <div>

            <input type="password" class="input" id="pass" placeholder="Password">

        </div>


        <div>

            <input type="submit" name="" class="input" id="submit" value="SIGN IN">

        </div>

        <div class="bottom" id="t1">

            Forgot <a href="Forget Password.html"> Username / Password?</a>

        </div>



        <div class="bottom" id="t2">

            Create an account? <a href="Sign up.html">Sign up</a>

        </div>




    </div>


</body>


</html>

























Comments

Popular posts from this blog

Side Navigation Bar CSS

 *{     background-color: #353b48; } body{     margin: 0px;     padding: 0px;     font-family: cursive; } .navbar{     position: absolute;     top: 50%;     transform: translateY(-50% ); }      .navbar a{     text-decoration: none;     display:block;     margin: 8px 0px;    padding: 8px;    width: 130px;    font-size: 22px;    /* background-color: #e74c3c; */    color: white;    margin-left: -100px;    border-radius: 10px;    transition: 0.6s; } .navbar a:hover{     margin-left: 0px; }

Web 2 Sign in

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Sign Up window</title>     <style>         * {             box-sizing: border-box;         }         body {             /* justify-content: center; */             /* align-items: center; */             margin: 0px;             padding: 0px;             font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;             color: black;             background-color: #e9faff;         }         .cont {   ...

Side Navigation Bar 1

 <!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="stylesheet" href="style.css"> </head> <body>     <div class="navbar">         <a href="#" style="background-color: #27ae60;">Home</a>         <a href="#" style="background-color: #c0392b;">About</a>         <a href="#" style="background-color: #ba21d8;">Gellary</a>         <a href="#" style="background-color: #2980b9;">Contact</a>     </div> </body> </html>