0% found this document useful (0 votes)
3 views4 pages

Expt 1a

The document outlines a procedure for creating a resume using HTML, including steps such as defining the HTML structure, adding multimedia, and applying styling. It provides a sample HTML code for a resume that includes personal information, education, work experience, skills, projects, and personal details. The result indicates that the HTML program was successfully written and executed.

Uploaded by

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

Expt 1a

The document outlines a procedure for creating a resume using HTML, including steps such as defining the HTML structure, adding multimedia, and applying styling. It provides a sample HTML code for a resume that includes personal information, education, work experience, skills, projects, and personal details. The result indicates that the HTML program was successfully written and executed.

Uploaded by

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

Ex.

No:1A CREATING A RESUME USING HTML

Date:

AIM:

To create a resume using Html.


PROCEDURE:
1. Open a new file in the text editor like notepad and save it with the .html
extension.
2. Define the Basic Structure of html.
3. Add Header Section.
4. Create Resume Sections.
5. Add Multimedia.
6. Add inline styling or link an external CSS file.
7. Save the file and open it in a web browser to preview the resume

PROGRAM:
<html>
<head>
<title>resume</title>
</head>
<body bgcolor="skyblue">
<h2 style="text-align: center;"> RESUME
</h2>
<h3><u>PERSONAL INFO:</u></h3>
<b>Name:</b>Nishanth.S<br>
<b>Email:</b><a href="mailto:[email protected]">[email protected]</a><br>
<b>mobile no:</b>+917856541236<br>
<img align="right" src="D:\CAHCET\2024-2025 even semester\WE_lab\nishanth.jpg"
alt="Nishanth" width="200">
<hr>
<h3><u>OBJECTIVE:</u></h3>
<p><b> Motivated Information Technology graduate with a strong foundation in software
development, networking, and data analysis. Seeking an entry-level role to apply technical
expertise, innovative problem-solving, and a passion for technology to contribute to
organizational growth and success while expanding my professional knowledge.</b></p><br>
<hr>
<h3><u>EDUCATION:</u></h3>

<table border="3">
<tr>
<th>s.no</th>
<th>degree</th>
<th>institute name</th>
<th>percentage</th>
<th>passing year</th>
</tr>
<tr>
<td>1</td>
<td>higher secondary</td>
<td>R.B.M</td>
<td>85%</td>
<td>2022</td>
</tr>
<tr>
<td>2</td>
<td>B.Tech-IT</td>
<td>CAHCET</td>
<td>80%</td>
<td>2026</td>
</tr>
</table>
<hr>
<h3><u>WORK EXPERIENCE:</u></h3>
<ul>

<li>ABC COMPANY,2024</li>
<li>Netech,2025</li>
</ul>
<hr>
<h3><u>SKILLS:</u></h3>
<ul>
<li>App&Web development</li>
<li>c++</li>
<li>java</li>
<li>python</li>
</ul>
<hr>
<h3><u>PROJECTS:</u></h3>
<li>Personal Budget development app</li>
<hr>
<h3><u>PERSONAL DETAILS:</u></h3>
<b>D.O.B:</b>1.2.2001<br>
<b>languages known:</b>Tamil,English<br>
<b>Age:</b>20<br>
<b>Blood group:</b>O+ve<br>
<b>Address:</b>Vellore<br>
<hr>
<h3><u>DECLARATION</u></h3>
<p>Hereby,I declare that the details furnished above are true to the best of my knowledge.</p>
<h3 style="text-align:right;"><b>yours faithfully</b></h3>
<h3 style="text-align:right;"><b>Nishanth.S</b></h3><br>
</body>
</html>
SAMPLE OUTPUT:

RESULT:
Thus, the html program for creating resume has been written and executed successfully.

You might also like