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.
<textarea cols="30" rows="6" name="textarea"> Please enter text </textarea>
HTML Advanced Features
1 Like
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" size="3" maxlength="3"> <input type="text" size="2" maxlength="2"> <input type="text" size="4" maxlength="4">
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.
<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.
<select name= "colors" size="4"> <option>Red</option> <option>Blue</option> <option>Green</option> <option>Orange</option> </select>