<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome to Eaglesoft</title>
    <style>
        *{
            margin: 0px;
            padding: 0px;
        }
        #main
        {
            background-image: url("https://wallpapercave.com/wp/u9AVLry.jpg");
            background-image: url("https://i.pinimg.com/originals/20/c4/ed/20c4ed904c96d955c7baed21e22d47e0.jpg");
            background-size: cover;
            width: 100vw;
            height: 100vh;
            position:absolute;
        }
        #login
        {
            background-color: blanchedalmond;
            border-radius: 20px;
            width: 20vw;
            height: 50vh;
            margin-top: 200px;
            margin-left:530px;
        }
        #h1
        {
            background-color: white;
            background-image: url("https://c2.staticflickr.com/2/1544/24128500842_485dea1a4c_o.png");
            background-size:cover;
            border-radius: 90px;
            width: 100px;
            height: 100px;
            position:absolute;
            margin-top: 5px;
            margin-left: 85px;
        }
        #username
        {
            margin-top: 120px;
            margin-left: 45px;
            margin: center;
            padding: 5px;
            border-radius: 30px;
        }
        #password
        {
            margin-top: 20px;
            margin-left: 45px;
            margin: center;
            padding: 5px;
            border-radius: 30px;
        }
        #submit
        {
            background-color:blue;
            color:white;
            font-weight: bolder;
            margin-top: 10px;
            margin-left: 90px;
            margin: center;
            padding: 5px;
            border-radius: 30px;
            width: 90px;
        }
        #forget
        {
            position:absolute;
            margin-left: 50px;
            margin-top: 20px;
            color:blue;
        }
    </style>
</head>
<body>
    <div id="main">
        <div id="login">
            <div id="h1"></div>
            <form>
            <input type="text" id="username" name="username" placeholder="Username" aligin="center">
            <input type="password" id="password" name="password" placeholder="password">
            <input type="submit" id="submit" name="submit" value="Login">
            <br>
            <i id="forget">Forget Password? Regiser</i>
          </form>
        </div>
    </div>
</body>
</html>
 
 
 
No comments:
Post a Comment