VANSH
VANSH
Program:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>Your Name - IT Resume</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 2em 0;
}
header h1 {
color: white;
}
section {
max-width: 800px;
margin: 2em auto;
padding: 1em;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1,
h2,
h3 {
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin-bottom: 0.5em;
}
.contact-section {
display: flex;
justify-content: space-between;
}
.contact-left {
width: 60%;
}
.contact-right {
width: 35%;
}
img {
width: 200px;
height: 200px;
border-radius: 50%;
}
</style>
</head>
<body>
<header>
<h1>Vansh Gupta
</h1>
<p>IT Student</p>
</header>
<section class="contact-section">
<div class="contact-left">
<h2>Contact Information</h2>
<p>Email: Vansh@gmail.com</p>
<p>Phone: (91+) 7897841656</p>
<p>Address: 123 Street, City, State, Zip</p>
</div>
<div class="contact-right">
<img src="https://images.unsplash.com/photo-1506794778202-
cad84cf45f1d?q=80&w=1374&auto=f ormat&fit=crop&ixlib=rb-
4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA
%3D%3D"
alt="Your Photo">
</div>
</section>
<section>
<h2>Education</h2>
<p><strong>IPEC</strong></p>
<p>Bachelor of Science in Information Technology</p>
<p>Expected Graduation: May 2025</p>
</section>
<section>
<h2>Experience</h2>
<p><strong>Intern - HAl</strong></p>
<p>HAL, Dwarka, New Delhi | June 2023 - August 2024</p>
<ul>
<li>Assisted in troubleshooting hardware and software issues.</li>
<li>Participated in the development and maintenance of IT systems.</li>
<li>Collaborated with team members on various IT projects.</li>
</ul>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>Programming Languages: Java, Python, HTML, CSS</li>
<li>Database Management: MySQL</li>
<li>Web Development: Front-end (HTML, CSS, JavaScript), Back-end
(Node.js)</li>
<li>Operating Systems: Windows, Linux</li>
<li>Problem Solving and Troubleshooting</li>
</ul>
</section>
</body>
</html>
OUTPUT: