Web Technologies - Old Questions

Question Answer Details

3.  Using test structuring toys, create a homepage for the curriculum vitae. Save at web server that is local or on the internet. Later view it using the browser.

10 marks
Asked in 2069

Answer

AI Generated Answer

AI is thinking...

Official Answer

<!DOCTYPE html>

 <html>

 <head>

 <title>Curriculum Vitae</title>

 </head>

 <body>

    <form id="form1" runat="server">

    <h1>Curriculum Vitae</h1>

    <div>

    <br />

    <table style="width:100%;">

    <tr>

        <td>Name:</td>

        <td>Manish Poudel</td>

    </tr>

    <tr>

        <td>Father Name</td>

        <td>Binod Poudel</td>

    </tr>

     <tr>

         <td>DOB:</td>

         <td>12<sup>th</sup> OCT 1998</td>

    </tr>

    <tr>

        <td>Temporary Address:</td>

        <td>Kathmandu</td>

    </tr>

    <tr>

        <td>Permanent Address</td>

        <td>Ramechhap</td>

    </tr>

    <tr>

        <td>Marital Status</td>

        <td>Unmarried</td>

    </tr>

    <tr>

        <td>&nbsp;</td>

        <td>&nbsp;</td>

    </tr>

    </table>

    </div>

 </form>

    <table style="width:100%;" >

    <tr>

        <td>Educational Information</td>

        <td>&nbsp;</td>

        <td>&nbsp;</td>

    </tr>

    <tr>

        <td>&nbsp;</td>

        <td>&nbsp;</td>

        <td>&nbsp;</td>

    </tr>

    <tr>

        <td>Degree</td>

        <td>Passed Year</td>

        <td>Percentage</td>

    </tr>

    <tr>

        <td>SLC</td>

        <td>2070 B.S.</td>

        <td>83</td>

    </tr>

    <tr>

        <td>+2 </td>

        <td>2073 B.S.</td>

        <td>74</td>

    </tr>

    <tr>

        <td>Bsc. CSIT </td>

        <td>Running</td>

        <td>N/A</td>

    </tr>

 </table>

 <br />

 Achievements:<br />

 <ul>

    <li>First Prize on Graphic Design in INFOTEC Festival</li>

    <li>Second Prize on On spot Software Development Inter college Competition</li>

    <li>Second Prize in Swimming Competition Olympic 2014</li>

 </ul>

 </body>

</html>


Let’s save in E: drive by named cv.html.

Viewing CV in Browser

Just Type in Browser address bar : file:///E:/cv.html