Sure, reading information on web sites is nice, but wouldn't you like to provide a richer, more interactive experience for your visitors? In that case, you're going to have to use some forms.
<form name="myform" action="path to your form processing script" method="post"> More HTML goes here! </form>
|
<input type="text"
size="25" value="Initial Value">
|
|
|
<textarea rows="3"
cols="5" name="mytextarea">Type
here.<textarea>
|
|
|
<select name="mydropdown">
(note that adding word "selected"
makes that choice initially selected)<option value="one">One</option> <option value="two" selected>Two</option> <option value="three">Three</option></select> |
|
|
<input type="checkbox"
name="mycheckbox" checked>
(note that adding word "checked"
selects the checkbox) |
|
|
<input type="radio"
name="radio1" checked>
|
|
|
<input type="reset"
value="Reset">
|
|
|
<input type="submit"
value="Submit">
|