Buttons
- Here is the code for two forms, and the resul
- There are a lot of inputs including text, radio buttons, check
boxes, and drop down lists.
- < form >
Type Something < input type="text" name="text1"> < br >
Send It < input type="submit" >
</form >.
-
-
< form >
Select Something < select >
< option value="red" > red </option>
< option value="green">green </option>
< option value="blue">blue </option>
< /select>
</form >.
-