<!
DOCTYPE HTML>
<html lang="en">
<head>
<title>My Resume</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
}
h2 {
text-decoration: underline;
}
#content {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
#content img {
border: 3px solid black;
height: 200px;
width: 200px;
}
h3 {
margin-top: 20px;
}
table {
border-collapse: collapse;
width: 100%;
}
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h2>Resume</h2>
<div id="content">
<div>
<p><b>Name:</b> Sushant Soni</p>
<h3>PERSONAL DETAILS:</h3>
<p>
<b>MAIL ID:</b>[email protected]<br>
<b>PHONE NO.:</b> 8090057974<br>
<b>ADDRESS:</b> AKGEC GHAZIABAD<br>
</p>
<h3>Objective:</h3>
<p>A goal-oriented software engineer looking to join ABC company,
using my expertise in software development and computer programming to create
high-quality applications.</p>
<h3>ACADEMIC DETAILS:</h3>
<table>
<tr>
<th>COURSE</th>
<th>BOARD</th>
<th>YEAR</th>
<th>PERCENTAGE</th>
</tr>
<tr>
<td>10</td>
<td>CBSE</td>
<td>2019</td>
<td>87%</td>
</tr>
<tr>
<td>12</td>
<td>CBSE</td>
<td>2021</td>
<td>91%</td>
</tr>
</table>
<h3>TECHNICAL SKILLS:</h3>
<p>Programming languages: C, C++, Python, HTML, Common operating
systems, Technical writing, Project management</p>
</div>
<div>
</div>
</div>
</body>
</html>