0% found this document useful (0 votes)
56 views5 pages

VANSH

The document provides HTML code to create a resume for a person named Vansh Gupta who is an IT student. The code includes sections for contact information, education, work experience, and skills. Styling is added with CSS to layout the content in a readable format on the page. The resume highlights Gupta's education at IPEC where he is studying for a Bachelor of Science in IT, as well as his internship experience at HAL where he assisted with hardware/software troubleshooting and IT projects.

Uploaded by

Ashwini Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views5 pages

VANSH

The document provides HTML code to create a resume for a person named Vansh Gupta who is an IT student. The code includes sections for contact information, education, work experience, and skills. Styling is added with CSS to layout the content in a readable format on the page. The resume highlights Gupta's education at IPEC where he is studying for a Bachelor of Science in IT, as well as his internship experience at HAL where he assisted with hardware/software troubleshooting and IT projects.

Uploaded by

Ashwini Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

PRACTICAL -1

Aim: Write HTML code to create a resume.

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:

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy