Computer Applications
It is possible to set the width of a text by specifying a …………… attribute.
- limit
- size
- value
- maxlength
HTML Advanced Features
2 Likes
Answer
size
Reason — It is possible to set the width of a text by specifying a SIZE attribute. SIZE attribute specifies the width of the text input control in terms of characters.
Answered By
2 Likes
Related Questions
A form has two required attributes. These are :
- Method and Action
- Get and Post
- Start and Stop
- Begin and End
The
<input>
tag has several kinds of controls which are dictated by the …………… attribute.- SRC
- value
- name
- type
Which of the following tags will clear the contents of the form?
<INPUT TYPE="CLEAR" VALUE="Clear the form">
<INPUT TYPE="SUBMIT" VALUE="Clear the form">
<INPUT TYPE="RESET" VALUE="Clear the form">
<INPUT TYPE="BUTTON" VALUE= "Clear the form">
Consider the following form control in a HTML form :
x Male x Female
Now choose the correct line of code for the above :
<input type = "radio" name= "Gender" value= "male">Male<br> <input type = "radio" name= "Gender" value= "female">Female<br>
2.
<input type = "radiobutton" name = "Gender" value= "male">Male<br> <input type = "radiobutton" name = "Gender" value= female">Female<br>
<input type = "radio", name = "Gender">< value= "male">Male <input type = "radio", name = "Gender">< value= "female">Female
4.
<input type = "radio" name= "Gender" value= "male"><br> <input type = "radio" name= "Gender" value = "female"><br>