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" size="3" maxlength="3">
<input type="text" size="2" maxlength="2">
<input type="text" size="4" maxlength="4">
HTML Advanced Features
1 Like
Answer
The output of this code fragment in browser is shown below:
Answered By
1 Like
Related Questions
Create a form as given below by using different Form tags and attributes.
(Hint : Also use Pre, Input, Select, Option tags for this)
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" 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>