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

Program 121

The document contains HTML and CSS code to display a resume on various websites. The HTML code includes sections for contact information, qualifications, skills, personal projects, achievements, and certificates. The CSS code styles various elements of the resume like headings, horizontal rules, and the background color.

Uploaded by

Vinay Singh
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)
46 views4 pages

Program 121

The document contains HTML and CSS code to display a resume on various websites. The HTML code includes sections for contact information, qualifications, skills, personal projects, achievements, and certificates. The CSS code styles various elements of the resume like headings, horizontal rules, and the background color.

Uploaded by

Vinay Singh
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/ 4

Program 1

Q.1 Write HTML/Java scripts to display your CV in navigator, your Institute website,
Department Website and Tutorial website for specific subject
CV
HTML CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume.html</title>
<link rel="stylesheet" href= "2.css" >
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="28983.jpg"
height="200"
width="200"
></td>
<td><h1>Vinay Singh </h1>
<h3>Programmer</h3>
<p>To work for an organization which provides me
opportunity to enhance my skills as well as growth of organization
</p></td>
<td>
<table >
<tr>
<td><table>
<tr>
<td><a
href= "https://linkedin.com/in/vinay06singh" > Linkedin </a></td>
</tr>

</table>
<td>
<table>
<tr><td>[email protected] </td></tr>
<tr>
<TD> 7355946437</TD>
</tr>
</table>
</td>
</tr>
</table>
</tr>
</table>
</td>
<hr >
<h2>Qualification</h2>
<ul>
<li><h3>Intermediate</h3>
<li>Kendriya Vidhyalaya </li>
<li><h3>High School</h3>
<li> Delhi Public School</li>
<li><h3> B.Tech</h3>
<li>Pranveer singh Institute of Technology</li>
</ul>
<hr >
<h2>Skilis</h2>
<table cellspacing="10">
<tr>
<td><table>
<tr>
<td>Problem solving</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<TD>Object oriented programming</TD>
<TD>⭐⭐⭐⭐</TD>
</tr>
</table>
<td>
<table>
<TR>
<TD>Data Science</TD>
<TD>⭐⭐⭐</TD>
</TR>
<tr>
<td>DBMS</td>
<td>⭐⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table>
<tr><td>Python</td>
<td>⭐⭐⭐⭐⭐</td></tr>
<tr>
<td>CSS</td>
<TD>⭐⭐⭐⭐</TD>
</tr>
</table>
</td>
</tr>
</table>
<hr >
<h2> Personal Project</h2>
<h3> Cricket Score Predictore</h3>
<ul>
<li>A machine learning model which tells the final predicted score at any stage of a game.

</li>
</ul>
<ul>
<li>Technologies used:python,numpy,pandas,Xgboost,linear regression etc.
</li>
</ul>
<hr >
<h2>Achievements</h2>
<h3>Hackerank</em></h3>
<ul>
<li>5⭐coder on hackerrank</li>
<li>solved more than 200 problems across various platforms</li>
</ul>
<hr >
<h2>Certificates</h2>
<h3>Problem solving (basic) Hackerrank</em></h3>
<ul>
<li>Problem soving (basic)</li>
<li>Problem solving(Intermediate)</li>
</ul>
<h2>
</li>
</ul>
</body>
</html>

CSS Code

body {
background-color: whitesmoke;
}
hr{
border-style: none;
border-top-style: dotted ;
border-color:grey;
border-width:5px;
width:10%;
}
h1{
color: blue;
}
h2{
color:blue;
}

You might also like