This program written in HTML. It is a Hypertext Markup Language. It is a very popular web programming language for making website page. Here above picture is the out put of this program you can see a table is put up in this html and every field of the table is filled up with different different things you can see on tat picture
Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us//Prepare the CV of a student using HTML Pages. <html> <body bgcolor="c1ddd"> <table width="40%" border=1 align="center"> <caption><h2>Cariculam Vitae</h2></caption> <tbody bgcolor="d1ddd"> <tr> <td colspan=2> Name: </td> <td colspan=3> Soumyodeep Mondal. </td> </tr> <tr> <td colspan=2> Date Of Brith: </td> <td colspan=3> 00/00/0000 </td> <tr> <tr> <td colspan=2> Address: </td> <td colspan=3> xyz,abcd abcd road, country-abcd. </td> </tr> <tr> <td colspan=2> Father's Name: </td> <td colspan=3> abcd abcd. </td> </tr> <tr> <td colspan=2> Eductaion: </td> <td colspan=3> type here </td> </tr> <tr> <td colspan=2> Photo: </td> <td colspan=3 align="center"> <img src="" width="15%"> </td> </tr> </tbody> </table> </body> </html>
Post a Comment