0% found this document useful (0 votes)
8 views3 pages

Task 3

HTML

Uploaded by

manikandanvp
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)
8 views3 pages

Task 3

HTML

Uploaded by

manikandanvp
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/ 3

Task-3

Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student-Profile</title>
</head>
<body style="background-color: blueviolet ;">
<b><table border=5px bgcolor="skyblue" align="center">
<caption><h1>Bio-Data</h1></caption>
<td> Name:</td>
<td colspan="4">Mohammad </td>
</tr>
<tr>
<td> Father Name:</td>
<td colspan="4">Saheb</td>
</tr>
<tr>
<td> Date Of Birth:</td>
<td colspan="4">20/07/2000</td>
</tr>
<tr>
<td rowspan="4"> Address:</td>
<td colspan="4">1-43</td>
</tr>
<tr>
<td colspan="4">PCR</td>
</tr>
<tr>
<td colspan="4">Chitoor</td>
</tr>
<tr>
<td colspan="4">517001</td>
</tr>
<tr>
<td> Gender:</td>
<td colspan="4">Male</td>
</tr>
<tr>
<td>Contact Number:</td>
<td colspan="4">6301234567</td>
</tr>
<tr>
<td>Email-id : </td>
<td colspan="4">[email protected]</td>
</tr>
<tr>
<th>Qualifications</th>
<th>Board / University</th>
<th>Year</th>
<th>Total Marks</th>
<th>Marks Obtained</th>
</tr>
<tr>
<td>SSC</td>
<td>Secondary Board</td>
<td>2016</td>
<td>600</td>
<td>478</td>
</tr>
<tr>
<td>Inter</td>
<td>Intermediatary Board</td>
<td>2018</td>
<td>1000</td>
<td>795</td>
</tr>
<tr>
<td>Under Graduation</td>
<td>JNTUA</td>
<td>2022</td>
<td>10.00</td>
<td>7.65</td>
</tr>
<tr>
<td> Hobbies:</td>
<td colspan="4">Music,Writting Quotes,Adaptability</td>
</tr>
<tr>
<td> Languages known:</td>
<td colspan="4"> Telugu,English,Hindi</td>
</tr>
<tr>
<td>Programming Language:</td>
<td colspan="4">C,Python,Front-End,Back-End,SQL</td>
</tr>
<tr>
<td> Nationality</td>
<td colspan="4"> Indian</td>
</tr>
<tr>
<td> Religion</td>
<td colspan="4">Muslim</td>
</tr>
<tr>
<td> Caste:</td>
<td colspan="4">BC_E</td>
</tr>
</table></b>
</body>
</html>

Output

You might also like