About me Profile Card using HTML and CSS





























Hello Developers, We provide you with a dynamic and attractive About me page that displays your information in a visually appealing manner. This About me page snippet has been designed with precision using HTML & CSS. About me page in HTML & CSS is one of the best ways to display information in a well-organized and attractive way. We are proud to present our About me page snippet in HTML & CSS. By using this HTML & CSS About me page you are not only sharing information but you are also showing your commitment to professionalism & contemporary web design. You can add user's name, designation, & profile picture at the top of your card to create a strong impression. You can also add social media info, contact info in the middle of your card and also add download resume button so that the interested people can get connected with you. Your card will be fully responsive so that it can be displayed on desktops, laptops, tablets & smartphones. All in all, use this innovative & creative About me page snippet to show off & interact with the world.

How to make About me Profile Card 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> <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,project"> <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="p1"> <img src="https://cdn.pixabay.com/photo/2017/05/23/03/56/man-2336071_1280.jpg" alt="man image"> </div> <div class="p2"> <h1>CONTACT ME</h1> <p>121 Rock Street, 21 Avenue, New York, NY 92103-9000</p> <p>1 (234) 567 891, 1 (234) 987-654</p> <p>hello@designer.co.com</p> <button type="submit">DOWLOAD RESUME</button> <div class="logo"> <a href="#"><i class="fa-brands fa-instagram"></i></a> <a href="#"><i class="fa-brands fa-twitter"></i></a> <a href="#"><i class="fa-brands fa-pinterest"></i></a> <a href="#"><i class="fa-brands fa-linkedin"></i></a> </div> <div class="credit">Made with <span>❤ </span>by <a href="https://www.learningrobo.com/">learningrobo</a></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
**/
*{
    box-sizing: border-box;
}
body{
    font-family: 'Heebo', sans-serif;
    margin:0;
}
.container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}
.box{
    width:90%;
    height:90%;
    display: flex;
    flex-direction:row;
    align-items: center;
}
.p1{
    width:50%;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.p1 img{
    width: 80%;
    height:90%;
    object-fit: cover;
}
.p2{
    width: 50%;
    height:100%;
    padding:3% 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.p2 h1,p{
    margin: 0%;
}
.p2 h1{
    font-size: 40px;
}
.p2 p{
    font-size: 20px;
    margin-top: 50px;
}
button{
    padding: 20px;
    background: transparent;
    outline: none;
    border: 1px solid #575958;
    font-size: 18px;
    font-weight: bold;
    margin-top: 50px;
    transition:1s;
    transition-timing-function:ease-in-out;
}
button:hover{
    cursor: pointer;
    background-color:#00d66b;
}
.logo{
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    margin-top: 50px;
}
.logo i{
    font-size:28px;
    color: #121212;
}
@media screen and (max-width:630px){
    .container{
        height: fit-content;
    }
    .box{
        margin:10px 0px;
        flex-direction: column;
    }
    .p1{
        width: 85vw;
    }
    .p1 img{
        width:100%;
    }
    .p2{
        width: 85vw;
    }
}
.credit a{
    text-decoration: none;
    color: #121212;
    font-weight: 800;
}
.credit{
    color: #121212;
    text-align:left;
    margin-top: 30px;
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}
.credit span{
    color:tomato;
    font-size:20px;
} 
We hope you would like this About me Profile Card using HTML and CSS .

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