Friday, January 15, 2021

Login Form with Eaglesoft Programmers


<!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>
        *
        {
            margin0px;
            padding0px;
        }
        body
        {
            background-image
            url("https://cutt.ly/7jRFJGq");
            background-repeatno-repeat;
            background-size:cover;        }

        #main
        {
            background-colorrgb(249224);
            border-radius50px 5px 50px 5px;
            box-shadow:4px 4px 8px rgb(978181);
            width20vw;
            height50vh;
            marginauto;
            margin-top100px;
            margin-left650px;
            position:absolute;
        }
        #main:hover
        {
            box-shadow:6px 6px 10px rgb(978181);
        }
        #loginnow
        {
            color:rgb(23822654);
            font-weightbold;
            font-size28px;
            text-shadowgreenyellow;
            text-aligncenter;
            margin-top60px;
            text-shadow2px 2px rgb(2365757);
        }
        .input
        {
            margin-left80px;
            margin-top:4px;
            width180px;
            height20px;
            colorwhite;
        }
        #button
        {
            background-color:yellow;
            margin-left135px;
            margin-top10px;
            width60px;
            height30px;
            color:brown;
            font-weightbold;
            border-radius5px;
        }
        #button:hover
        {
            box-shadow1px 1px 1px 2px white;
            width62px;
            height32px;
        }
    </style>
</head>
<body>
    <div id="main">
        <H3 id="loginnow">Login Now</H3>
        <b class="input">User Name</b>
        <input type="text" placeholder="Username" class="input">
        <b class="input">Password</b>
        <input type="password" placeholder="Password" class="input">
        <br>
        <button id="button">Login</button>
    </div>
</body>
</html>

No comments:

Post a Comment