Resume Design using HTML and CSS

                                                                                

































Hello Developers, we are excited to introduce a sleek and versatile profile card snippet, crafted with precision using 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, and a brief description, 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 highlight the profile details effectively. Interactive elements, such as hover effects, can be incorporated to enhance user engagement, making the cards more dynamic and interesting. Additionally, you can include social media icons, allowing users to connect with the individual across various platforms. By integrating this HTML and CSS profile card snippet into your website, you not only enhance its visual appeal but also add a professional touch. This snippet demonstrates your attention to detail and your commitment to providing a rich user experience. Whether you are displaying your team, showcasing clients, or creating personal profiles, this stylish and functional card design will help you present individuals in an engaging and professional manner.

How to make Resume 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>Responsive Resume Using HTML & CSS</title> <meta name="description" content="Responsive Resume 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=Josefin+Sans:wght@300&display=swap" rel="stylesheet"> </head> <body> <!--Hello Future Developer Thanks for Using learningrobo.com, Share & Support us--> <div class="container"> <div class="box1"> <div class="content1"> <div class="profile"> <img src="https://cdn.pixabay.com/photo/2023/04/30/04/29/anime-7959700_1280.jpg" alt="user image"> <div class="desigination"> <h3>James Alexander</h3> <p>Web Developer</p> </div> </div> <div class="desc"> <p class="sub1">Experience</p> <h3 class="topic">Developer, Writer</h3> <h5 class="year">2017 - Present</h5> <p class="para">Lorem ipsum dolor sit amet consectetur adipisicing elit. Eos quaerat mollitia adipisci porro placeat necessitatibus nihil assumenda doloremque velit minus iste architecto cupiditate error magni obcaecati minima odio, aliquid ipsam. Lorem ipsum dolor sit amet consectetur adipisicing elit. Delectus, ducimus! Velit numquam totam, doloribus dolores sint nostrum? Assumenda, laborum fugit! Delectus, modi. Nesciunt, sint qui? Ipsam molestiae ut asperiores labore.</p> <h4 class="view">View work →</h4> <h3 class="topic">Software Tester</h3> <h5 class="year">2013 - 2017</h5> <p class="para">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Laudantium doloremque, inventore animi officiis commodi qui est beatae accusantium harum iusto earum facere itaque rerum ullam debitis, odio eius expedita velit!</p> <h4 class="view">View work →</h4><br> <p class="sub1">Education</p> <h3 class="topic">ABC University of Computer Science</h3> <h5 class="year">2013 - 2017</h5> <p class="para">Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugiat numquam doloremque mollitia nam, voluptatem at velit accusantium, excepturi tempora sint cupiditate unde vero fugit quibusdam reiciendis perferendis illo saepe veniam!</p> <h3 class="sub1">Links</h3> <h6 class="view">Awwwward 2022 →</h6> <h6 class="view">The Webby 2021 →</h6> <h6 class="view">VentureBeat →</h6> <h6 class="view">TechCrunch →</h6> </div> </div> </div> <div class="box2"> <div class="content2"> <p class="sub2">About</p> <p class="para2">Lorem ipsum dolor sit amet consectetur, adipisicing elit. In nulla at quaerat recusandae aliquid! Quos in labore pariatur assumenda vel, blanditiis perspiciatis ipsam doloribus corporis exercitationem ut cupiditate ea odio?</p> <p class="sub2">Skills</p> <ul> <li>UI Designer</li> <li>Web Design</li> <li>Framer</li> <li>ScreenFlow</li> <li>After Effects</li> <li>Adobe Xd</li> </ul> <p class="sub2">Contact</p> <h6>LinkedIn →</h6> <h6>Twitter →</h6> <h6>Email →</h6> </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: 'Josefin Sans', sans-serif;
    margin: 0%;
}
.container{
    /* width: 100vw; */
    height: 125vh;
    display: flex;
    flex-direction: row;
}
.box1{
    width: 70%;
    height: 125vh;
    background: linear-gradient(to right, #c6ffdd, #fbd786);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content1{
    width: 90%;
    height: 122vh;
}
.profile{
    height: 13vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 30px;
}
.profile img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 5px 5px 10px grey;
}
.desigination{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.desigination h3{
    margin: 0%;
    font-size: 28px;
}
.desigination p{
    margin: 0%;
    font-weight: 600;
    color: #4e4848;
}
.box2{
    width: 30%;
    height: 125vh;
    background-color: #4e4848;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content2{
    width: 90%;
    height: 120vh;
    color: white;
}
.sub1{
    font-size: 18px;
    font-weight: 700;
    color: #4e4848;
    margin: 18px 10px;
    letter-spacing: 1px;
}
.year{
    font-size: 14px;
    font-weight: 500;
    color: #494747;
    margin: 10px 10px;
    letter-spacing: 1px;
}
.topic{
    font-size: 20px;
    font-weight: bolder;
    color: black;
    margin: 10px 10px;
    letter-spacing: 1px;
}
.para{
    font-size: 16px;
    font-weight: 600;
    margin: 15px 10px;
    letter-spacing: .5px;
}
.view{
    font-size: 15px;
    font-weight: 600;
    margin: 15px 10px;
    letter-spacing: 1px;
}
.sub2{
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 18px 10px;
    letter-spacing: 1px;
}
.para2{
    font-size: 15px;
    font-weight: 500;
    margin: 15px 10px;
    letter-spacing: .5px;
    line-height: 20px;
}
ul{
    padding-left: 25px;
}
li{
    margin: 10px 0px;
}
.box2 h6{
    margin: 10px 15px;
    font-size: 15px;
    font-weight: 500;
}
.credit a {
    text-decoration: none;
    color: black;
    font-weight: 800;
}
.credit{
    color: black;
    text-align: center;
    margin-top: 10px;
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}
.credit span{
    color:tomato;
    font-size:20px;
} 
@media screen and (max-width:1024px){
    .container{
        height: fit-content;
        flex-direction: column;
    }
    .box1{
        height: fit-content;
        width: fit-content;
    }
    .content1{
        height: fit-content;
    }
    .profile{
        justify-content: left;
    }
    .box2{
        height: fit-content;
        width: fit-content;
    }
    .content2{
        height: auto;
    }
}
@media screen and (max-width:630px){
    .container{
        height: fit-content;
        flex-direction: column;
    }
    .box1{
        height: fit-content;
        width: fit-content;
    }
    .content1{
        height: fit-content;
    }
    .profile{
        height: fit-content;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        row-gap: 20px;
    }
    .box2{
        height: auto;
        width: fit-content;
    }
    .content2{
        height: auto;
    }
}
We hope you would like this Resume Design using HTML and CSS.

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