Login Page Design using HTML & CSS

                                                                                















































Hello Developers, we are excited to introduce a sleek and versatile profile card snippet, meticulously designed with HTML and CSS. This profile card is perfect for showcasing individual profiles, whether for team members, clients, or personal use. Each card includes a photo, name, title, a brief bio, and contact information, providing a comprehensive snapshot of the individual. The profile card snippet is fully responsive, ensuring it looks stunning on any device, from desktops to smartphones. The layout is clean and modern, with well-organized sections that effectively highlight the profile details. Interactive elements, such as hover effects, enhance user engagement, making the cards more dynamic and captivating. Additionally, social media icons and links to professional profiles like GitHub and LinkedIn can be included, allowing users to connect with the individual across various platforms. Incorporating this HTML and CSS profile card snippet into your website not only enhances its visual appeal but also adds a professional touch. This snippet showcases your attention to detail and commitment to providing a rich user experience. Whether you are displaying your own profile, highlighting team members, or presenting clients, this stylish and functional card design will help you present individuals in an engaging and professional manner.

How to make Login Page Design using HTML and CSS.[Source Code]

To make this website, you would like to make two files: an HTML file, a CSS file. First, create an HTML file with the name of index.html and remember, you have to create a file with a .html extension.

<!DOCTYPE html> <html lang="en"> <head> <title>Login Page Design Using HTML & CSS</title> <meta name="description" content="Responsive Profile card Using HTML & CSSt. Made by learningrobo.com"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="form,responsive,learningrobo.com,html & css projects,project,Login Page"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="icon" type=image/x-icon href="#"> <meta charset="UTF-8"> <script src="https://kit.fontawesome.com/5d72166fb5.js" crossorigin="anonymous"></script> <link href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'> <link rel="stylesheet" href="style.css"> </head> <body> <!--Hello Future Developer Thanks for Using learningrobo.com, Share & Support us--> <div id="main-content" class="main-content"> <div class="sec1"> <div class="logo">Your Logo</div> <div class="credit">Made with <span>❤ </span>by <a href="https://www.learningrobo.com/">learningrobo</a></div> </div> <div class="sec2"> <div class="header"> <ul> <li>Pricing</li> <li>Help</li> <li>About</li> </ul> </div> <div class="login"> <div class="head1">LOGIN</div> <div class="input"> <input type="text" id="username" name="username" required placeholder="Username"> <input type="password" id="password" name="password" required placeholder="Password"> </div> <div class="buttons"> <span class="fpass">Forgot password?</span> <button>Login</button> <span class="register">Didn't have an account? sign in</span> <span>Or</span> <span class="link"> <a href="#"> <i class='bx bxl-google' style='color:white'></i> </a> <a href="#"> <i class='bx bxl-apple' style="color: white;"></i> </a> </span> </div> </div> </div> </div> <!--Check our website Regularly For New Snippets Post--> </body> </html>
CSS provides style to an HTML page. To make the page attractive create a CSS file with the name style.css and remember that you have to make a file with a .css extension.


/** 
Hello Future Developer Thanks for Using learningrobo.com, 
Check our website Regularly For New Snippets Post.

Share & Support us
**/
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.main-content{
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100vw;
    background-color:#2e3345;
}
.main-content .sec1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 40vw;
}
.main-content .sec1 .logo{
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:35px;
    color: wheat;
}
.credit a {
    text-decoration: none;
    color: white;
    font-weight: 800;
}
.credit {
    height: 10vh;
    color: white;
    text-align: center;
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}
.credit span{
    color:red;
    font-size:20px;
}     
.main-content .sec2{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 60vw;
    background-color:#1F222C;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.main-content .sec2 .header{
    display: flex;
    height: 8vh;
    width: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 30px;
}
.main-content .sec2 .header ul{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.main-content .sec2 .header ul li{
    color: white;
    list-style: none;
    height: 90%;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}
.main-content .sec2 .header ul li:hover{
    background-color: #2e3345;
    border-radius: 40px;
}
.main-content .sec2 .login{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 92vh;
    width: 100%;
    padding-left: 100px;
}
.main-content .sec2 .login .head1{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15vh;
    width: 100%;
    color: white;
    font-size: 30px;
}
.main-content .sec2 .login .input{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20vh;
    width: 100%;
    gap: 60px;
}
.main-content .sec2 .login .input input{
    height: 10vh;
    width: 25vw;
    border-radius: 40px;
    padding: 15px;
    background-color:#1F222C;
    border: 1px solid white;
    color: white;
}
.main-content .sec2 .login .input input::placeholder{
    color: white;
    font-size: 14px;
}
.main-content .sec2 .login .buttons{
    height: 35vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.main-content .sec2 .login .buttons .fpass{
    display: flex;
    align-items: center;
    justify-content:center;
    color: lightskyblue;
    height: 6vh;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
}
.main-content .sec2 .login .buttons button{
    height: 6vh;
    width: 15vw;
    background: #25D366;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
}
.main-content .sec2 .login .buttons .register{
    display: flex;
    align-items: center;
    justify-content:center;
    color: lightskyblue;
    height: 6vh;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
}
.main-content .sec2 .login .buttons span{
    color: white;
}
.main-content .sec2 .login .buttons .link{
    display: flex;
    height: 6vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.main-content .sec2 .login .buttons .link a i{
    font-size: 45px;
}
We hope you would like this Login Page Design using HTML and CSS.

Thank you for reading our blog. If you face any problem in Creating a Login Page Design using HTML and CSS., then contact us or comment to us. We’ll try to provide a solution to your problem as soon as possible.

Press The Key ' p ' and say ' read article ' our voice assistant read our article.
In Our older post it doesnot work we working on that.












Thank you
Learning robo team

إرسال تعليق

Thank you
Learning robo team

Post a Comment (0)

أحدث أقدم
Learning Robo says...
code copied
Welcome