Profile Settings 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 Profile Settings 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>Profile Settings Using HTML & CSS</title> <meta name="description" content="Profile Settings Using HTML & CSS. Made by learningrobo.com"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="form,responsive,learningrobo.com,html & css projects,project,introduction"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="icon" type=image/x-icon href="#"> <link rel="stylesheet" href="style.css"> <meta charset="UTF-8"> <script src="https://kit.fontawesome.com/5d72166fb5.js" crossorigin="anonymous"></script> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet"> </head> <body> <!--Hello Future Developer Thanks for Using learningrobo.com, Share & Support us--> <div class="container"> <div class="box"> <div class="c1"> <p><i class="fa-regular fa-user" style="color: #ffffff;"></i>Profile</p> <p><i class="fa-regular fa-bell" style="color: #ffffff;"></i>Notifications</p> <p><i class="fa-regular fa-newspaper" style="color: #ffffff;"></i>Billing Info</p> <p><i class="fa-solid fa-gear" style="color: #ffffff;"></i>General</p> </div> <div class="c2"> <div class="s1"> <span>Profile Settings</span> <img src="https://cdn-icons-png.flaticon.com/512/6676/6676023.png" alt="user image"> <a href="#">Edit Picture</a> </div> <div class="s2"> <form action="#"> <label for="fname">Full Name</label><br> <input type="text" name="fname" id="fname"><br> <label for="email">Email</label><br> <input type="email" name="email" id="email"><br> <label for="pass">Password</label><br> <input type="password" name="pass" id="pass"><br> <label for="dob">Birthday</label><br> <input type="date" name="dob" id="dob"><br> <div class="but"> <button type="submit" class="save">Save Changes</button> <button type="reset" class="exit">Cancel</button> </div> </form> </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
**/
*{
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    margin: 0%;
    background-color: azure;
}
.container{
    height: 100vh;
}
.box{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
}
.c1{
    width: 25%;
    background-color: darkseagreen;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 30px;
}
p{
    margin: 0%;
    margin-left: 40px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}
p:hover{
    color: black;
    cursor: pointer;
    transition: 0.5s;
}
i{
    margin-right: 20px;
}
.c2{
    width: 75%;
    display: flex;
    flex-direction: row;
}
.s1{
    width: 30%;
    display: flex;
    flex-direction: column;
}
span{
    font-size: 30px;
    font-weight: bolder;
    color: grey;
    margin: 80px 0px 30px 30px;
}
img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0px 30px;
}
a{
    text-decoration: none;
    font-size: 18px;
    color: grey;
    font-weight: bold;
    margin: 20px 55px;
}
a:hover{
    color: darkslategrey;
    transition: 0.5s;
}
.s2{
    width: 70%;
    display: flex;
    flex-direction: column;
}
form{
    margin-top: 110px;
}
label{
    font-size: 18px;
    font-weight: bold;
    color: grey;
    margin-left: 65px;
}
input{
    background-color: none;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid grey;
    width: 80%;
    margin-bottom: 40px;
    padding: 10px;
    font-size: 18px;
    margin-left: 65px;
}
button{
    width: 40%;
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: bolder;
    border-radius: 5px;
}
.but{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
button:hover{
    cursor: pointer;
    color: seashell;
    transition: 0.5s;
}
.save{
    background-color: darkseagreen;
    color: white;
    letter-spacing: 1px;
}
.exit{
    background-color: gray;
    color: rgb(61, 61, 61);
    letter-spacing: normal;
}
.credit a {
    text-decoration: none;
    color: black;
    font-weight: 800;
    margin: 0;
}
.credit{
    color: black;
    text-align: center;
    margin-top: 10px;
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}
.credit span{
    color:tomato;
    font-size:20px;
    margin: 0;
}
@media screen and (max-width:1024px){
    .container{
        height: fit-content;
    }
    .box{
        height: fit-content;
        flex-direction: column;
    }
    .c1{
        width: 100%;
        height: fit-content;
        flex-direction: row;
        padding: 20px;
    }
    .c2{
        width: 100%;
        height: fit-content;
    }
    .s1{
        width: fit-content;
        
    }
    .s2{
        width: 100%;
    }
}
@media screen and (max-width:630px){
    .container{
        width: 100%;
        height: fit-content;
    }
    .box{
        width: 100%;
        height: fit-content;
    }
    .c1{
        width: 100%;
        height: fit-content;
        flex-direction: column;
        align-items: start;
    }
    .c2{
        width: 100%;
        height: fit-content;
        flex-direction: column;
    }
    .s1{
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .s2{
        width: 100%;

    }
}
We hope you would like this Profile Settings Design using HTML and CSS.

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

Post a Comment

Thank you
Learning robo team

Post a Comment (0)

Previous Post Next Post
Learning Robo says...
code copied
Welcome