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.
<select name= "colors" size="4">
<option>Red</option>
<option>Blue</option>
<option>Green</option>
<option>Orange</option>
</select>
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.
<textarea cols="30" rows="6" name="textarea"> Please enter text </textarea>
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"> <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>