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.
<input type="text" name="text1">
HTML Advanced Features
3 Likes
Answer
The output of this code fragment in browser is shown below:
Answered By
2 Likes
Related Questions
Create a webpage that receives pizza orders through a web form as shown below :
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.
<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>