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">
<option>Red</option>
<option>Blue</option>
<option>Green</option>
<option>Orange</option>
</select>
HTML Advanced Features
2 Likes
Answer
The output of this code fragment in browser is shown below:
Answered By
2 Likes
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.
<input type="text" name="text1">
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" 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">