Saturday, April 12, 2014

HTML TUTORIAL PART 9

HTML TUTORIAL PART 9

PROBLEM:
LOOK AT THE FOLLOWING:


SOLVED:
THE CODE BELOW MADE THE HTML TIP:

<html>
<head> <title> Tables </title> </head>
<body>

<h1> Some tables </h1>
<table border=1 cellspacing=0 cellpadding=3 width=35% bordercolor=black background="baby1.jpg">
<tr>
<th rowspan=2> Name </th> <th colspan=2> Sex </th>
</tr>

<tr>
<td> Male </td> <td> Female</td>
</tr>

<tr bgcolor=aqua>
<td> RAVI GUPTA </td> <td> <input type="checkbox" checked> </td> <td> <input type="checkbox"></td>
</tr>

<tr bgcolor=pink>
<td > SUNITA </td> <td>   <input type="checkbox"></td> <td> <input type="checkbox" checked></td>
</tr>

</table>

<h1> Nested Loop </h1>
<ol>
<li> Computer software
<ul>
<li> Ms Office
<li> Adobe Package
<li> Micromedia Studio
</ul>
<li> Hardware
<ul>
<li> Mouse
<li> Keyboard
<li> Scanner
<ol type="a">
<li> Bar code Scanner
<li> MICR
<li> Simple Scanner
</ol>
<li> Printer
</ul>
</ol>

<h1> Difination List (DL) </h1>
<dl>
<dt> Software
<dd> Software is a set of complex srcipts
<dt> Hardware
<dd> hardware makes a computer to a machine
</dl>
<p>

</body>
</html>

No comments:

Post a Comment