How to create login form in html and css

Please subscribe our channel and support me.
Please like and 1 comment this video.

If you are visiting my channel for the first time then please subscribe
Go to my Youtube channel : https://www.youtube.com

Html Code
<div class="fixed"> <div class="login-card"> <div class="header"> <div class="logo-name"><span>Your</span>SiteName</div> <div class="close">&times;</div> </div> <form action="/" class="form"> <p class="title">Login</p> <input type="text" class="input" placeholder="Username"> <input type="password" class="input" placeholder="Password"> <div class="footer"> <div class="login-with">Login with <a href="#" class="link">f</a> <a href="#" class="link">t</a> <a href="#" class="link">u</a> </div> <button class="button">Login</button> </div> </form> </div> </div>
Css Code
@font-face { font-family: icon; src: url('https://democodewithar.000webhostapp.com/v3/fonts/icon.ttf') } body { margin: 0; padding: 0; font-family: roboto; } .fixed { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #00000074; } .login-card { width: 300px; margin: 0 auto; margin-top: 10%; background: #000; color: #fff; } .login-card .header, .login-card .form { display: flex; align-items: center; font-size: 12px; padding: 10px 20px; } .login-card .logo-name { text-transform: uppercase; font-weight: 600; letter-spacing: 3px; flex: 1; } .login-card .logo-name span { color: #e6c003; } .login-card .close, .login-card .login-with .link { cursor: pointer; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; } .login-card .close:hover { background: #fff3; } .login-card .form { flex-direction: column; align-items: start; border-top: solid 1px #fff3; } .login-card .form .input { width: -webkit-fill-available; display: block; padding: 6px; margin: 5px auto; } .login-card .footer { width: 100%; margin: 10px 0; display: flex; align-items: center; } .login-card .login-with { display: flex; font-family: cursive; flex: 1; } .login-card .login-with .link { color: #fff; text-decoration: none; font-family: icon; transition: all 0.5s; margin-left: 5px; } .login-card .login-with .link:hover { color: #e6c003; text-shadow: 0 0 12px; } .login-card .form .button { background: #e6c003; border: none; border-radius: 2px; padding: 3px 10px; cursor: pointer; transition: all 0.8s; } .login-card .form .button:hover { box-shadow: 0 0 30px #e6c003; }

@ Recommendations Videos

blogger theme design : https://youtu.be/DAIJTjRzxLk

Login Form : https://youtu.be/HWbAr1XN3Lc

Forms design : https://youtu.be/M2ERkDXjEuw

Responsive CSS card : https://youtu.be/Ol9_5cYtAaw

Navigation design : https://youtu.be/LNEgZBdWPGM

Disclaimer video is for educational purpose only. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use .

Thanks..