Skip to main content

How to Create Login Form in HTML and CSS : Source Code

Tutorial 5

How to Create Login Form in HTML and CSS || Make Styles Login Form || Web Tutorials : Source Code

  Hey Guys , Welcome To My Blog :-  Web Tutorials || Yuvan Art

Full Process To Create Styles Login Form :- Click On The Below Link To Watch Full Process To Create Styles Login Form Using HTML And CSS.






Part ( 1 ) HTML Code :- 

<!-- Styles Login Form - HTML Part -->
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login Form</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <div class="form">
        <h1>Login Form</h1>
        <form action="#" method="POST">
            <p>User Name</p>
            <input type="text" name="user" placeholder="User Name" required>
            <p>Password</p>
            <input type="password" name="password" placeholder="Password" required>
            <a href="#">Forgot Password?</a>
            <button type="submit">Login</button>
        </form>
    </div>
</body>

</html>

Part ( 2 ) CSS Code :- 

/* Styles Login Form - CSS part */
*{
    padding0;
    margin0;
    font-familyGeorgia'Times New Roman'Timesserif;
}
body{
    background-imageurl("banner8.jpg");
    background-size150%;
    background-repeatno-repeat;
}
.form{
    width350px;
    top50%;
    left50%;
    transformtranslate(-50%-50%);
    positionabsolute;
    colorwhite;
    padding15px;
    border3px solid white;
    border-radius5px;
    backgroundtransparent;
    backdrop-filter: blur(8px);
    box-shadow0 10px 30px rgba(0000.7);
}
h1{
    font-size35px;
    text-aligncenter;
    text-transformuppercase;
    margin30px 0;
    padding5px;
    border2px solid white;
    border-radius20px;
    box-shadowinset 5px 5px 3px greyinset -5px -5px 3px black;
    font-family'Times New Roman'Timesserif;
}
p{
    font-size20px;
    margin15px;
}
input{
    font-size16px;
    width94%;
    padding15px 10px;
    border0;
    outlinenone;
    border-radius10px;
}
button{
    font-size18px;
    font-weightbold;
    margin20px 0;
    padding10px 15px;
    width50%;
    bordernone;
    border-radius10px;
    cursorpointer;
}
a{
    colorwhite;
    floatright;
    padding-top5px;
}
button:hover{
    background-coloraqua;
}
a:hover{
    coloraqua;
}

Part ( 3 ) Background Image :- 





Thank You !!!

Comments

Popular posts from this blog

CSS Neon Button with Hover effects using Html and CSS : Source Code

   Tutorial 3 CSS Neon Button with Hover effects using Html and CSS || Web Tutorials : Source Code   Hey Guys , Welcome To My Blog :-  Web Tutorials || Yuvan Art Full Process To Create Styles Button :-  Click On The Below Link To Watch Full Process To Create CSS Neon Button with hover effects using Html and CSS . CSS Neon Button effect on hover using HTML & CSS || CSS Glowing button effects || Web Tutorials Part ( 1 ) HTML Code :-  <!-- CSS Neon Button With Hover Effect - HTML Part --> <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < tit...

Styles Table with awesome Hover effect using HTML And CSS : Source Code

  Tutorial 8 Styles Table with awesome Hover effect using HTML And CSS || Web Tutorials : Source Code   Hey Guys , Welcome To My Blog :-   Web Tutorials || Yuvan Art Full Process To Create Styles Table :-  Click On The Below Link To Watch Full Process To Make Styles Table Using HTML And CSS. Styles Table with awesome Hover effect using HTML And CSS || Web Tutorials : Source Code Part ( 1 ) HTML Code :-  <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Styling Table </ title >      < link   rel = "stylesheet"   href = "style.css" > </ head > ...

How to Create Simple Login Form using HTML and CSS : Source Code

  Tutorial 4 How to Create Simple Login Form using HTML and CSS - Web Tutorials || Make Login Form : Source Code   Hey Guys , Welcome To My Blog :-  Web Tutorials || Yuvan Art Full Process To Create Styles Login Form :-  Click On The Below Link To Watch Full Process To Create Simple Login Form Using HTML And CSS. How to Create Simple Login Form using HTML and CSS - Web Tutorials || Make Login Form Part ( 1 ) HTML Code :-  <!-- Simple Login Form - HTML Part --> <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Login Form </ title >    ...