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> 

 

Leave a Reply

Your email address will not be published.