How to Put Field with radio button in your HTML
2 posters
Page 1 of 1
How to Put Field with radio button in your HTML
- Code:
<form method=post action="Churva.com">
<center>
Select an option:
<select>
<option >option 1</option>
<option selected>option 2</option>
<option>option 3</option>
<option>option 4</option>
<option>option 5</option>
<option>option 6</option>
</select><br>
<input type="Submit" value="Submit"></center>
</form>
Preview:
Re: How to Put Field with radio button in your HTML
Hi, just want to clarify something. Your code is correct but you have a wrong title.
Your actually displaying a form with a dropdown list box and a submit button.
Here's how to create a form with a radio button and submit button.
Preview:
This is a label displaying the word "Option 6" w/ a line break
And this is the radio button
Preview:
This is a label displaying the word "Option 6" w/ a line break:
And this is the radio button:
Your actually displaying a form with a dropdown list box and a submit button.
Here's how to create a form with a radio button and submit button.
- Code:
<form method=post action="Churva.com">
<center>
<input type='radio' value='1' name='option'>
<label>Option 1</label><br/>
<input type='radio' value='2' name='option'>
<label>Option 2</label><br/>
<input type='radio' value='3' name='option'>
<label>Option 3</label><br/>
<input type='radio' value='4' name='option'>
<label>Option 4</label><br/>
<input type='radio' value='5' name='option'>
<label>Option 5</label><br/>
<input type='radio' checked value='6' name='option'>
<label>Option 6</label><br/>
<input type="Submit" value="Submit"></center>
</form>
Preview:
This is a label displaying the word "Option 6" w/ a line break
- Code:
<label>Option 6</label><br/>
And this is the radio button
- Code:
<input type='radio' checked value='6' name='option'>
Preview:
This is a label displaying the word "Option 6" w/ a line break:
And this is the radio button:
mrs3m0- FTTF Tutor
- Posts : 10
Reputation : 2
Join date : 2009-06-10
Similar topics
» How to Put Field in your HTML
» How to put tables on your html
» INTRODUCTION OF HTML
» click ling button :D
» How to Put List in Your HTML
» How to put tables on your html
» INTRODUCTION OF HTML
» click ling button :D
» How to Put List in Your HTML
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum