Personal profile card Using HTML and CSS





























Hello Developers, we provide you with a dynamic and beautiful personal profile card that displays your information at a glance. This personal profile card snippet has been designed with accuracy using HTML & CSS. A Personal profile card in HTML and CSS is a great way to display information in an organized and attractive way. We are proud to introduce our profile card, which is beautifully designed in HTML and CSS. You can include the user’s name, designation and profile picture at the top of the card, which creates a strong impression. In the center part of the card, you can add social media information and you can also include a message button for interested people to get in touch with them. The card is fully responsive, so the information can be viewed on a variety of devices, including desktops, laptops, tablets and smartphones. By using this HTML & CSS personal profile card snippet you are not only sharing information but you are also showing your commitment to professionalism and modern web design. All in all, you can show off and communicate with the world using this innovative & creative personal profile card snippet. Note: We have saved the CSS in a different file and connected it with the HTML file to make the Personal profile card snippets.

How to make Personal profile card Using HTML 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> <head> <title>Profile Card UI design - learningrobo</title> <meta name="description" content="Profile Card UI design - learningrobo"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="profile card,Responsive,learningrobo.com,html & css projects"> <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> </head> <body> <!--Hello Future Developer Thanks for Using learningrobo.com, Share & Support us--> <div class="container"> <div class="box"> <div class="box1"> <img src="https://cdn.pixabay.com/photo/2017/11/10/05/48/user-2935527_1280.png" alt="sample logo"> </div> <div class="box2"> <h1>learningrobo</h1> <h4>@pacificcreation</h4> <div class="icon"> <a href="#"><i class="fa-brands fa-facebook"></i></a> <a href="#"><i class="fa-brands fa-square-instagram"></i></a> <a href="#"><i class="fa-brands fa-linkedin"></i></a> </div> <h3>Snippet For Web Developers</h3> <button type="submit">Message</button> </div> </div> <div class="credit">Made with <span>❤ </span>by <a href="https://www.learningrobo.com/"> learningrobo</a></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
**/
*{
    box-sizing: border-box;
}
body{
    font-family: 'Exo 2', sans-serif;
    margin:0px
}
.container{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height:100vh;
    background-image: linear-gradient(-225deg, #20E2D7 0%, #F9FEA5 100%);
}
.box{
    display:flex;
    flex-direction: column;
    height: 560px;
    width: 380px;
    border-radius:25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.box1{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 210px;
    background-color: #121212;
    border-radius: 25px 25px 0px 0px;
    text-align: center;
}
.box1 img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin:20px;
    border: 5px solid transparent;
    outline:3px solid #20E2D7;
}
.box2{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap:10px;
    width: 380px;
    height: 350px;
    background-color: #20E2D7;
    border-radius: 0px 0px 25px 25px;
    text-align: center;
    padding:10px 0px;
}
h1,h4,h3{
    margin: 0%;
}
.icon i{
    color:#121212;
    font-size:25px;
    margin:20px 10px;
    background-color: #F8FFF8;
    padding:10px;
    border-radius:50%;
    height:45px;
    width:45px;
}
button{
    width: 280px;
    padding: 20px;
    border-radius: 30px;
    border: none;
    background-color: #F8FFF8;
    font-size: 20px;
    margin:20px 0px;
}
button:hover{
    cursor: pointer;
}
@media screen and (max-width:630px){
    .box{
        width:95%; 
    }
    .box1,.box2{
        width:100%;
    }
}
.credit a{
    text-decoration: none;
    color: #121212;
    font-weight: 800;
}
.credit{
    color: #121212;
    text-align: center;
    margin-top: 10px;
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}
.credit span{
    color:tomato;
    font-size:20px;
}
We hope you would like this Personal profile card Using HTML and CSS .

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