Computer Applications
Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output would appear in browser.
YES
<input type="checkbox" value="yes"><br>
NO
<input type="checkbox" value="no">
HTML Advanced Features
1 Like
Answer
The output of this code fragment in browser is shown below:
Answered By
1 Like
Related Questions
Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output would appear in browser.
<select name= "colors" size="4"> <option>Red</option> <option>Blue</option> <option>Green</option> <option>Orange</option> </select>
Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output would appear in browser.
Male <input type= "radio" value="male"><br> Female <input type= "radio" value="female">
Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output would appear in browser.
Male <input type="radio" value="male"><br> Female <input type="radio" value="female" checked>
Consider the following code fragments and determine how these code fragments would create form elements, i.e., draw how their output would appear in browser.
YES <input type="checkbox" value="yes" checked><br> NO <input type="checkbox" value="no">