Total Pageviews

Tuesday, January 17, 2012

HTML TABLE CREATION

<html>
<body>

<table border="1">


<tr>
  <th>PHOTO :</th>
  <td><img src="C:\Documents and Settings\Student\My Documents\Downloads\Akatsuki_Chibi.jpg"

width="304" height="228"/></td>
</tr>

<tr>
  <th>Name:</th>
  <td>XYZ</td>
</tr>


<tr>
  <th>DOB</th>
  <td>1/2/1991</td>
</tr>


<tr>
  <th>Father's Name</th>
  <td>pqr</td>
</tr>

<tr>
  <th>Nationality</th>
  <td>indian</td>
</tr>

<tr>
  <th>GENDER</th>
  <td>

<form>
<input type="radio" name="GENDER" value="male" /> Male<br />
<input type="radio" name="GENDER" value="female" /> Female
</form>


  </td>
  </tr>

<tr>
  <th>hobbies</th>

  <td>

<ol>
<li></li>
<li></li>
</ol>

</td>

</tr>

<tr>
  <th>QUALIFICATION</th>
  <td></td>
</tr>

<tr>
  <th >

<table border="1">

<tr>
<th>class        </th>
<th>MARKS        </th>
<th>DIVISION</th>
</tr>

<tr>
<td>10</td>
<td>90</td>
<td>distinction</td>
</tr>

<tr>
<td>12</td>
<td>80</td>
<td>distinction</td>
</tr>

</table>

  </th>
  <td><td>
</tr>

</table>

</body>
</html>

PHOTO :
Name: XYZ
DOB 1/2/1991
Father's Name pqr
Nationality indian
GENDER
Male
Female
hobbies
QUALIFICATION
class MARKS DIVISION
10 90 distinction
12 80 distinction

No comments:

Post a Comment