Create resumé with HTML and CSS
Create resumé with HTML and CSS
<html>
<head>
<title>my Resume</title>
<style>
body {
border:1px outset black;
width: 21cm;
height: 26cm;
margin: 0px auto;
}
.d1{
height:100%;
width:100%;
}
.d2{
padding:30px;
margin:25px;
box-shadow:0px 0px 8px 2px black;
height:850px;
width:25%;
float:left;
position:relative;
}
.d3{
padding:30px;
margin:30px;
height:850px;
width:45%;
float:left;
}
.photo{
border-radius:50px;
padding:30px;
margin:25px;
box-shadow:0px 0px 15px 2px black;
height:100px;
width:100px;
float:left;
}
.intro{
line-height:30px;
height:150px;
width:300px;
float:left;
}
.language{
line-height:30px;
height:500px;
width:400px;
float:left;
}
.progress-bar{
height:10px;
width:100px;
border:1px;
background:gray;
}
.progress-bar .Marathi{
height:10px;
width:100px;
border:1px;
background:#0f1;
}
.progress-bar .Hindi{
height:10px;
width:70px;
border:1px;
background:#0f1;
}
.progress-bar .English{
height:10px;
width:40px;
border:1px;
background:#0f1;
}
section h2 {
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
margin-bottom: 15px;
color: black;
}
table {
width:400px;
height:15px;
text-align:center;
}
table,th,td {
border-collapse:collapse;
}
.name{
height:100px;
width:65%;
}
</style>
</head>
<body>
<div class="d1">
<div class="d2">
<div class="photo">
photo
</div>
<div class="intro">
<h4>
<ul>
<li>Web developer</li>
<li>Latur,Maharashtra</li>
<li>abcdefghijk@gmail.com</li>
<li>9876543456</li>
</ul>
</div>
<ul>
<div class="language">
<h3>Language
<h4>Marathi
<div class="progress-bar"><div class="Marathi"></div></div>
Hindi
<div class="progress-bar"><div class="Hindi"></div></div>
English
<div class="progress-bar"><div class="English"></div></div>
</div>
</div>
<div class="d3">
<div class="name">
<h2> Sawitri Phule
</div>
<div>
<section class="education">
<h3>Education</h2>
<p><strong>Bachelor of Computer Appliction</strong> SRTUM-2025</p>
</section>
<section class="Progress-report">
<h3>Progress-Report</h3>
<table border="2px">
<th>Year<th>Class<th>Percentage</th>
<tr><td>2025<td>Bca-Ty<td>92.89%</tr>
<tr><td>2024<td>Bca-Sy<td>91%</tr>
<tr><td>2023<td>Bca-Fy<td>92.45%</tr>
<tr><td>2022<td>HSC<td>90.79%</tr>
</table>
</section>
<section class="skills">
<h3>Skills</h3>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>c, cpp,java</li>
<li>oracle, SQl</li>
<li>Responsive Design</li>
</ul>
</section>
<section class="skills">
<h3>Hobbies</h3>
<ul>
<li>Reading</li>
<li>Travling</li>
<li>Watching movies</li>
</ul>
</section>
</div></div>
</body>
</html>
OUTPUT
Comments
Post a Comment