Making Buttons Two

Homepage

HTML lessons


Explaining simple tags
Explaining simple tags2
Explaining simple tags3
Browsers and Notepad
Playing with Fonts
Colors and Tags
Learning to Link
Inching through Images
Inching a Bit More with Images
Terrific Tables to Try
Building Borders
Wrapping Text
Terrific Tables Two
Color
Pat's Web Page
Making Lists Long and Short
The Mail Command
Basic Frames
Making Forms
Making More Forms
Making Buttons One
Making Buttons Two
IFrames
Appendix
Now we need to look at two more ways to make buttons. That's all I am going to say about buttons! I promise!
Remember that buttons are a kind of form. A form is something the web reader puts data into, but in HTML alone, we canNOT collect the data. First we have the radio button.


Do you think we have too much homework?
Yes
No


The code is easy, as follows:

<form>
<font size=-1>
Do you think we have too much homework?
<input type="radio">Yes
<input type="radio">No
</font> </form>

The Submit Button

The submit button is very similar. Just follow the <form> tag with <input type="submit">.
And that is all I will have to say about that!