Font size
WorksheetsHTML Forms
Total questions: 10
Worksheet time: 6mins
What tag tells the browser where the form starts and ends?
<form> tag
<table> tag
<a> tag
<img> tag
There are 3 form attributes named as action, target, and (a) .
What form attributes includes the POST and GET values?
action
target
method
What form elements are used in creating this drop-down list?
<select> and <option>
<label> and <input>
<textarea> and <input>
<select> and <input>
What form elements are used in creating this text field?
<select> and <option>
<label> and <input>
<textarea> and <input>
<select> and <input>
TRUE or FALSE
The id attribute of the <input> element should always be equal to the for attribute of the <label> element.
(a)
What HTML input type is used to create this password field?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this submit button?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this form selections?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this form checkbox?
<input type="text">
<input type="checkbox">
<input type="password">
<input type="radio">
