|
| |
Table:
<table border> <tr> <th>Company</th> <th>Street</th>
<th>Suite</th> <th>City</th> <th>Postal</th>
</tr>
<tr>
<td>ABC Company</td> <td>123 Your Street</td> <td></td>
<td>Toronto, ON</td> <td>L6J 2F4</td>
</tr>
<tr> <td>Company</td> <td>345 City Street</td> <td>
Ste. 2101</td> <td> Toronto, ON</td> <td>J7U 4F5</td>
</tr>
</table>
Lists:
The numbering system may be amended with the optional TYPE= command. The valid
types are A,a,I,i,1 giving the following displays:
Capital A <OL TYPE="A">
A. Item one
B. Item two
C. Item three
Small A <OL TYPE="a">
a. Item one
b. Item two
c. Item three
Numbered Lists <OL TYPE="1">
1. Item One
2. Item Two
3. Item Three
Roman Capital <OL TYPE="I">
I. Item one
II. Item two
III. Item three
Roman Small <OL TYPE="i">
i. Item one
ii. Item two
iii. Item three
Form:
<FORM METHOD="POST" ACTION="../cgi-bin/test-cgi">
<p>Enter Your Name: <input type="text" name="longText"
size="50" maxlength="30">
<p>please enter your password <input type="password" name="passwd">
<p>Choose an Animal
<ul>
<li><input type="radio" name="theType" value="cat">
cat
<li><input type="radio" name="theType" value="dog">dog
<li><input type="radio" name="theType" value="fish">
fish
</ul>
<p>Profession (choose all that apply):
<ul>
<li><input type="checkbox" name="doc"> Doctor
<li><input type="checkbox" name="law">Lawyer
<li><input type="checkbox" name="teacher"> Teacher
<li><input type="checkbox" name="accountant">Accountant
</ul>
<p>What is the colour of your hair?
<SELECT name="hrcolor">
<option value="bla"> black
<option value="blo">blonde
<option value="brow">brown
<option value="grey">grey
</SELECT>
<p>
Comments:<br>
<textarea name="cat" rows="7" cols="50" >
</textarea>
<br>
<INPUT TYPE=SUBMIT value="Click here to enter your info"><input
type="reset">
</FORM>
|