Here we have used HTML to create a resume page.
The code for the problem can be found here
Here is the solution to the assignment.
<!DOCTYPE html> <html> <head> <title>Resume</title> </head> <body> <h1><u>Curriculum Vitae</u></h1> <br><br><br><br> <h3>Name: </h3>Rahul Chowdhury <h3>Address: </h3> 108, Chatterjee Bagan<br> P.O. Chinsurah R.S.<br> Hooghly, 712102 <h3>Contact Details: <h4>Mobile: </h4>9804182380 <h4>Email id: </h4>rahulc93@gmail.com <h4>GitHub account: </h4><a href = https://github.com/rahulc93>rahulc93</a> </h3> <h3>Date of Birth: </h3>16th March, 1993 <h3>Father's Name: </h3>Subhashis Chowdhury <h3>Nationality: </h3>Indian <h3>Marital Status: </h3>Single <h3>Academic Qualifications: </h3> <ol type="A"> <li>Semester marks in <b>Information Technology</b> from <b>National Institute of Technology, Durgapur</b></li> <b>CGPA: </b>7.4 <li>Marks obtained in board examinations from <b>Don Bosco, Bandel</b></li> <table border = "1"> <tr> <th>Examination</th> <th>Year of appearing</th> <th>Percentage obtained</th> </tr> <tr> <td>ISC</td> <td>2011</td> <td>84.75</td> </tr> <tr> <td>ICSE</td> <td>2009</td> <td>86</td> </tr> </table> </ol> <br><br> <h3>Other Qualifications</h3> <b><u>Programming Skills</u></b> in the following languages: <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> <h3>Work Experience: </h3>Nil <h3>Languages known: </h3>English, Hindi, and Bengali. <h3>Fields of Interest: </h3>Programming, reading books, music, watching movies. </body> </html>
To view the page which we have made here using html, simply open it with any browser. For example, to view it in konqueror, just do:
$ konqueror resume.html