Making a form using HTML Example 1

This is a simple example on how to make a form using html attributes..

 

<html>
<head>
<title> CUN130101342 </title>
</head>
<body>
<form bgcolor="green">
<fieldset>
<table>
<tr>First Name:<input type="text"> <br></tr>
<tr>Last Name:<input type="text"> <br></tr>
<tr>Email Address:<input type="text"> <br></tr>
<tr>Gender:<br></tr>     
<input type="radio" name="g" value="off">Male<br>
<input type="radio" name="g" value="off">Female
<br>
    <input type="reset" name="s"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  <input type="image" name="s" src="submit.jpg" height="30" width="70" align="center">
</fieldset>
</form>
</body>
</html> 

 

Making a table with border using html Example 1

Simple program of html to make a table.

<html>
<head>
<title> BloggingSimplified </title>
</head>
<body>
<table border="10">
<tr>
<td rowspan="2"></td>
<td colspan="2"> Average </td>
<td rowspan="2"> Red Eyes </td>
</tr>
<tr>
<td>Height</td>
<td>Weight</td>
</tr>
<tr>
<td>Males</td>
<td>19</td>
<td>0.003</td>
<td>40%</td>
</tr>
<tr>
<td>Females</td>
<td>17</td>
<td>0.002</td>
<td>43%</td>
</tr>
</table>
</body>
</html>