How to create attractive CV using Html
In this article we will learn how to
create a good CV through HTML.  We can easily create CV in all Words
Software. But today we will learn how to make a good CV using HTML tags. 
First we will talk about CV. CV is an
abbreviation for Curriculum Vitae. If a job advertisement asks for a CV , that
is a hint that the employer expects a great deal of life experience and
accomplishments, including education, original research, presentations you have
given and papers or books you have published. 
The CV format consists of the following sections:
- Personal profile
- Personal information
- Qualifications
- Achievements
- Skills
- Work Experience
- References.
In the editor you want to create a CV
through HTML, first you have to give this file an html extension so that when we
open it in a browser it is in the form of a page. i.e MyCv.html 
Now we will start our work inside it
using html start tag (<html>) and end tag (</html>).we create Cv by
using basics HTMLtags. 
Now we start to create section of CV step
by step with the help of HTML tag
1 Personal Profile 
<img src="image
bath/URL.jpg" width="125" height="180">
2. Personal information 
<h1><u>Personal
Information</u></h1> 
<p>Name : Tech Pcr</p> 
<p>Contact No :
03001234567</p> 
<p>CNIC : 21303-1234567-8</p>
<p>Nationality :
Pakistani</p> 
<p>Religion : Islam</p> 
<p>Gender : Male</p> 
<p>Status : Not Married</p> 
<p>Address : F6, Tech Pcr,
Islamabad </p>
Result
Personal Information
Name : Tech Pcr
Contact No : 03001234567
CNIC : 21303-1234567-8
Nationality : Pakistani
Religion : Islam
Gender : Male
Status : Not Married
Address : F6, Tech Pcr, Islamabad 
3. Qualification 
<h1><u>Qualification
Information</u></h1> 
<table border="2"
width="500" height="200"> 
<tbody align="center">
<th>Qualiication</th> 
<th>Year</th> 
<th>Board/University</th> 
<th>Grade</th> 
<tr> <td>Matric</td> 
<td>2013</td> 
<td>Bise Peshawar</td> 
<td>A+</td> 
</tr> 
<tr> 
<td>Inter</td> 
<td>2015</td>
<td>Bise Rawalpindi</td> 
<td>A</td> 
</tr> 
<tr> 
<td>Bs</td> 
<td>2019</td>
 <td>University of Lahore</td> 
<td>A</td> 
</tr> 
</tbody> 
</table>
Result
Qualification Information
| Qualiication | Year | Board/University | Grade | 
|---|---|---|---|
| Matric | 2013 | Bise Peshawar | A+ | 
| Inter | 2015 | Bise Rawalpindi | A | 
| Bs | 2019 | University of Lahore | A | 
4.Achievement 
<h1><u>Achievement</u></h1>
<p>I have completed Software
Engineering from university of lahore and got Software Engineering
degree</p>
Result
Result
Achievement
I have completed Software Engineering from university of lahore and got Software Engineering degree
5.Work Experience 
<h1><u>Work Experience
</u></h1> 
<p>1.One year experience in
Software House islamabad</p> 
<p>2.Two year experience in PTCL telecommunications
company</p>
Result
2.Two year experience in PTCL telecommunications company
Result
Work Experience
1.One year experience in Software House islamabad2.Two year experience in PTCL telecommunications company
Now we will create a full CV by doing all
these tags and applying the center tag. Which you can see below.
Open Desktop Site to see this CV
    
Contact No : 03001234567
CNIC : 21303-1234567-8
Nationality : Pakistani
Religion : Islam
Gender : Male
Status : Not Married
Address : F6, Tech Pcr, Islamabad
 
      
2.Two year experience in PTCL telecommunications company
 
Open Desktop Site to see this CV
Personal Information
Name : Tech PcrContact No : 03001234567
CNIC : 21303-1234567-8
Nationality : Pakistani
Religion : Islam
Gender : Male
Status : Not Married
Address : F6, Tech Pcr, Islamabad
Qualification Information
| Qualiication | Year | Board/University | Grade | 
|---|---|---|---|
| Matric | 2013 | Bise Peshawar | A+ | 
| Inter | 2015 | Bise Rawalpindi | A | 
| Bs | 2019 | University of Lahore | A | 
Achievement
I have completed Software Engineering from university of lahore and got Software Engineering degreeWork Experience
1.One year experience in Software House islamabad2.Two year experience in PTCL telecommunications company
I hope you understand this article and if you do not understand anything, you can ask in the comment section.
 


Post a Comment