BYE THE BLUETOOTH EAREPHONE   LINK  πŸ‘‰πŸ» buy this earephone   Also visit my storeπŸ‘‰πŸ» https://amzn.to/3jnXio8 Samsung Galaxy M42 5G (Prism Dot Black, 8GB RAM, 128GB Storage) πŸ‘‰πŸ» https://amzn.to/3ymO5jW Studd Halmets  https://amzn.to/3sTTxcY                                        Boya m1 mic =  https://amzn.to/38F5qu5   Bluethooth boat 210  https://amzn.to/2ZfvlHp Cap  https://amzn.to/3EvQMnA Sport shoe   https://amzn.to/3kE3zwk

                  HERE IS ANIMATED LOGIN FORM SOURCE CODE


COPY THIS HTML AND CSS CODE

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>

<body>

<html>

<head>

    <title>Animated login form</title>

<link rel="stylesheet" href="style.css">
</head>

<body>
   <section>

    <form class="box" action="index.html" 
method="post">

             <h1>login</h1>

         <input type="text" name="" 
placeholder="username">

        <input type="password" 
name="" placeholder="password">

         <input type="submit"
 name="" value="login">

        </form>

    </section>
</body>


<style>
    body {

        margin0;
        padding0;
        font-familysans-serif;
        background#34495e;

    }




    .box h1 {
        font-styleitalic;
        colorwhite;
        text-transformuppercase;
        font-weight500;
    }



    .box input[type="text"],
    .box input[type="password"] {
        border0;
        backgroundnone;
        displayblock;
        /*background effect is
 not put when we do block*/
        margin20px auto;
        text-aligncenter;
        border3px solid #3498db;
        padding14px 10px;
        width200px;
        outlinenone;
        colorwhite;
        border-radius27px;
        transition0.25s;


    }


    .box input[type="text"]:focus,
    .box input[type="password"]:focus {
        width280px;
        border-color#2ecc71;
    }

    .box input[type="submit"] {

        border0;
        backgroundnone;
        displayblock;
        margin20px auto;
        text-aligncenter;
        border3px solid #2ecc71;
        padding14px 40px;
        cursorpointer;
        outlinenone;
        colorwhite;
        border-radius24px;
        transition0.25s;



    }

    .box input[type="submit"]:hover {

        background#2ecc71;

    }

    input::placeholder
    {
        color#fff;
    }

    .box {

        width300px;
        padding40px;
        positionabsolute;
        /*to make center
 position of element*/
        top50%;
        left50%;
        transformtranslate(-50%-50%);
        backgroundrgba(000.1);
        text-aligncenter;
        /* border-radius: 100%;*/
        animation: avi2 2s infinite;
    }

    section {


        width100%;
        height100vh;
        color#fff;
        backgroundlinear-gradient
(-45deg#EE7752#E73C7E#23A6D5#23D5AB);
        background-size400% 400%;
        positionrelative;
        animationmove 2s infinite;

    }


    @keyframes move {


        0% {
            background-position0 50%;
        }


        50% {
            background-position100% 50%;
        }


        100% {
            background-position0 50%;
        }

    }




    @keyframes avi2 {


        0% {
            border-radius0%
        }

        50% {
            border-styledotted
        }

        100% {
            border-radius50%
        }

    }

</style>

</html>


THANK YOU HAVE A GOOD CODING JOURNEY

Comments

ads

Popular posts from this blog