Saturday, 25 January 2014

Simple Form

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Document</title>
</head>

<body>
<h3 align="center">Top Of Form</h3>
<hr />
Please Complete All Of the following
<form>
<table>
<tr>
    <td width="152">First Name:</td>
    <td colspan="3"><input type="text" name="t1" /></td>
</tr>
<tr>
    <td>Last Name:</td>
    <td colspan="3"><input type="text" name="t2" /></td>
</tr>
<tr>
    <td>Business:</td>
    <td colspan="3"><input type="text" name="t3" /></td>
</tr>
<tr>
    <td height="21"></td>
    <td colspan="2"></td>
</tr>
<tr>
    <td colspan="4">We Must have a correct email address to send you the newsletter</td>
</tr>
<tr>
    <td height="33">Email:</td>
    <td colspan="3"><input type="text" name="t4"  width="200px"/></td>
</tr>
<tr>
    <td height="21" colspan="4"></td>
</tr>
<tr>
    <td colspan="4">How did you here aboout Bigcorp email latter?</td>
</tr>
<tr>
    <td><input type="radio" name="r1" />Here on the Web</td>
    <td width="117"><input type="radio" name="r2" />In a magazine</td>
    <td width="130"><input type="radio" name="r3" />Newspaper story</td>
    <td width="82"><input type="radio" name="r4" />Other</td>
</tr>
<tr>
    <td height="21" colspan="4"></td>
</tr>
<tr>
    <td colspan="4">Would you care to be on our regular mailing list?</td>
</tr>
<tr>
    <td colspan="4"><input type="checkbox" name="c1" />Yes,I love junk mail</td>
</tr>
<tr>
    <td height="21" colspan="4"></td>
</tr>
<tr>
    <td colspan="4">Which are the games you like to play?</td>
</tr>
<tr>
    <td colspan="4">
    <select>
        <option>cricket</option>
        <option>Football</option>
        <option>Basketball</option>
    </select>
    </td>
</tr>
<tr>
    <td colspan="4">Enter the Comment this Website</td>
</tr>
</table>
</form>
<hr />
<h3 align="center">Top Of Form</h3>
</body>
</html>
Untitled Document

Top Of Form


Please Complete All Of the following
First Name:
Last Name:
Business:
We Must have a correct email address to send you the newsletter
Email:
How did you here aboout Bigcorp email latter?
Here on the Web In a magazine Newspaper story Other
Would you care to be on our regular mailing list?
Yes,I love junk mail
Which are the games you like to play?
Enter the Comment this Website

Top Of Form

No comments:

Post a Comment