Responsive Login Form 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 Responsive Login Form 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 form desing 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 form"> <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 rel="stylesheet" href="style.css"> </head> <body> <!--Hello Future Developer Thanks for Using learningrobo.com, Share & Support us--> <div class="container"> <div class="con1"> <h1>Login an Account👋</h1> <p>Kindly fill in your details and high-class graphic and boost design</p> <br> <form> <input type="text" id="name" name="name" placeholder="Email or username"><br> <input type="password" id="pass" name="pass" placeholder="password"><br> <button id="btn">REGISTER ACCOUNT</button> <div class="separator"> <span>or authorized with</span> </div> <div class="button-row"> <button class="auth-button google-button"> <i class="fa-brands fa-google"></i> Google </button> <button class="auth-button apple-button"> <i class="fa-brands fa-apple"></i> Apple </button> </div> <div class="last"> <a href="#" id="underline">Forget password?</a><br> <p >Don't have an account <a href="#" id="underline">Signup</a> </p> </div> </form> </div> <div class="con2"> <div class="login-right"> <div class="explore-section"> <h2>Start your journey by one<br> click, explore<br> beautiful world!</h2> <div class="image-container"> <img src="https://cdn.pixabay.com/photo/2020/06/30/10/23/icon-5355896_1280.png" alt="Traveler"> </div> </div> </div> </div> </div> <div class="credit">Made with <span>❤ </span>by <a href="https://www.learningrobo.com/">learningrobo</a></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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
}
body
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}
.container{
    display: flex;
    height: 90vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
}
.con1{
    height: 600px;
    width: 600px;
    background-color: transparent;
    border: 2px solid violet;
    border-radius: 5px;   
}
.con1 h1{
    color: black;
    font-weight: bolder;
    margin: 70px 100px;   
}
.con1 p{
    margin: -70px 100px;
     color: #262626;
}
.con1 form{
    margin-top: 60px; ;
    margin-left: 100px;
}
input{  
height: 50px;
width: 85%;
display: flex;
padding-left: 10px;
border-radius: 7px;
}
input::placeholder{
    text-align: left;
}
#btn{
    height: 50px;
    width: 85%;
    border-radius: 3px;
    background-color: rgb(194, 181, 255);
    font-size: medium;
    color: black;
    margin-top: 4px;
}
#btn:hover{
    background-color:rgb(153, 131, 254);
}
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    margin-right: 100px;
}

.separator::before,
.separator::after {
    content: "";
    flex: 0.5;
    border-bottom: 1px solid #000; 
    margin: 0 10px; 
}

.separator span {
    white-space: nowrap;
    font-size: 16px;
}
.button-row {
    display: flex;
    justify-content: center; 
    gap: 30px; 
    margin-top: 20px;
    margin-right: 80px;
}

.auth-button {
    display: flex;
    align-items: center;
    padding: 10px 20px; 
    border: none;
    border-radius: 5px;
    background-color: #f5f5f5; 
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); 
}
.last{
    margin-top: 20px;
    margin-left : 80px;
    text-decoration: none;
}
#underline{
    text-decoration: none;
    font-size: small;
    margin-top: 20px;
    
    font-weight: 500;
    color: black;
}
#underline:hover{
color: blue;
}
 .last p{
    margin-top: 10px;
    margin-left: 0px;
    font-size: small;
    font-weight: 500;
}
 .fa-google{
    height: 20px; 
    width: 20px; 
    padding-right:30px;
    padding-top: 5px;  
}
.fa-apple{
    height: 20px; 
    width: 20px; 
    padding-right:30px;
    padding-top: 5px;  
}
.con2{
    height: 600px;
    width: 600px;
    background: linear-gradient(to right,#4ec2df, #4cc6d2,#4acac1,#4acbbe);
    border: 2px solid black;
    margin-right: 10px;
    margin-right: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.con2 h3{
    margin-bottom: 240px;
    margin-left: -220px;
    margin-top: -200px;
    color: white;
    font-weight:bolder;
    font-family: "Poppins", sans-serif;
  font-weight: 800;
}
.child2{
    height: 50%;
    width: 100%;
    background-color: black;
}
.login-right {
    width: 70%;
    background-color: transparent;
    border: 2px solid rgba(255,255, 255,.2);
    backdrop-filter: blur(25px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 20px;
}
.explore-section {
    text-align: center;
    padding: 20px;
    
}
.explore-section h2 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.image-container {
    display: inline-block;
}
.image-container img {
    max-width: 80%;
    border-radius: 10px;
}
@media screen and (max-width:700px) {
    .container{
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }
}
.credit a {
    text-decoration: none;
    color: #121212;
    font-weight: 800;
}
  
.credit {
    color: #121212;
    height: 10vh;
    text-align: center;
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}
.credit span{
    color:#000;
    font-size:20px;
}     
We hope you would like this Responsive Login Form Design using HTML and CSS.

Thank you for reading our blog. If you face any problem in Creating a Responsive Login Form 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