About Me Card Using HTML and CSS































Hello Developers, We provide you with a dynamic and eye-catching Personal portfolio HTML Template using HTML and CSS that presents your information in an easy-to-read format. The Personal Portfolio Html Template is a simple and easy-to-use Personal portfolio HTML that uses HTML and CSS to create a seamless authentication experience for the user. With an HTML/CSS portfolio, you can create pages that are engaging and informative on your website. You can use HTML for content structure and CSS for styling to easily change the layout, fonts, colors, and more. This snippet makes it easy to present your company or personal information in a visually appealing way, fostering a user-friendly experience. This personal portfolio is fully responsive so it can be displayed on any device including desktop, laptop, tablet, or smartphone. By using this HTML & CSS footer design snippet, you're not only sharing information but also showing your dedication to professionalism & contemporary web design.

How to make About Me 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>About Me Card UI design - learningrobo</title> <meta name="description" content="About Me Card UI design - learningrobo"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="about me 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="subcontainer"> <div class="top-subcontainer"> <h1>ABOUT<span> ME</span></h1> <p>A web developer designs and creates websites and web applications, ensuring functionality, user experience, and responsiveness.</p> </div> <div class="bottom-subcontainer"> <div class="left"> <img src="https://cdn.pixabay.com/photo/2017/10/20/14/10/beautiful-girl-2871280_1280.jpg"> </div> <div class="right"> <h2>Hello!! I am<span> Laurel Fisher</span></h2> <p>A web developer is a professional responsible for creating and maintaining websites. They possess a strong command of programming languages such as HTML, CSS, and JavaScript, using these tools to design and build user-friendly and visually appealing websites</p> <table> <tr> <th>Name :</th> <td>Laurel Fisher</td> </tr> <tr> <th>Age :</th> <td>35</td> </tr> <tr> <th>Mobile :</th> <td>+91 XXXXXXXXXX</td> </tr> <tr> <th>Email :</th> <td>laurel@example.com</td> </tr> <tr> <th>Address :</th> <td>42 Main St, City, USA</td> </tr> </table> <button>Download CV</button> </div> </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
**/
@import url('https://fonts.googleapis.com/css2?family=Yantramanav&display=swap');
*{
    box-sizing: border-box;
}
body{
    background-image:linear-gradient(0deg, #1DD2CD 0%, #E98462 100%);
    font-family:'Mukta', sans-serif;
    margin:0%;
}
.container{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:100%;
}
.subcontainer{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border-radius:10px;
    width:900px;
    height:680px;
    max-height:fit-content;
    background-color:#e2e3e3;
    padding:10px;
    box-shadow:rgba(128,128,128,0.6) 0px 7px 19px 0px;
}
.top-subcontainer{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    width:80%;
    height:150px;
}
.bottom-subcontainer{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:10px;
    width:100%;
    height:calc((700px - 150px) - 40px);
}
.left{
    display:flex;
    justify-content:center;
    align-items:center;
    width:50%;
    height:fit-content;
}
.left img{
    height:calc((700px - 150px) - 120px);
    width:370px;
    border:5px solid transparent;
    outline:5px solid #E98462;
    object-fit:cover;
    object-position:60% 0%;
    border-radius:10px;
}
.right{
    display:flex;
    flex-direction:column;
    justify-content:left;
    align-items:left;
    width:50%;
    height:fit-content;
}
.right table{
    display:flex;
    flex-direction:column;
    justify-content:left;
    align-items:left;
    width:100%;
    border-collapse:collapse;
}
.right table th{
    padding:5px;
    border:none;
    text-align:left;
}
.right table td{
    padding:5px;
    border:none;
}
.right button{
    width:130px;
    margin-top:10px;
}
.right button{
    background-color:#E98462;
    border:2px solid #000;
    color:#fff;
    padding:12px 20px;
    border-radius:5px;
}
.right button:hover{
    cursor:pointer;
    background-color:#d1dae0;
    transition:.5s;
    color:#000;
    border:2px solid #E98462;
}
.right h2{
    margin:0px;
}
span{
    color:#E98462;
}
@media only screen and (max-width: 1024px){
    .container{
        height:fit-content; 
    }
    .subcontainer{
        margin:10px 0px 0px;
        width:85%;
        height:fit-content;
    }
    .top-subcontainer{
        width:100%;
        padding:20px;
        height:fit-content;
    }
    .bottom-subcontainer{
        display: flex;
        flex-direction:column;
        padding:0px;
        height:fit-content;
    }
    .right{
        width:100%;
        height:fit-content;
        padding:40px;
    }
}
@media only screen and (max-width: 630px){
    .container{
        height:fit-content; 
    }
    .subcontainer{
        margin:20px 0px;
        width:95%;
        height:fit-content;
    }
    .top-subcontainer{
        width:100%;
        height:fit-content;
    }
    .bottom-subcontainer{
        display:flex;
        flex-direction:column;
        height:fit-content;
    }
    .left img{
        height:300px;
        width:300px;
    }
    .right{
        width:100%;
        padding:20px;
    }
}
.credit a{
    text-decoration: none;
    color: #000;
    font-weight: 800;
}
.credit{
    color: #000;
    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 About Me Card Using HTML and CSS.

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