Computer Applications
<input type="submit" name="submit" id="submit" />
creates a reset button.
- True
- False
HTML Advanced Features
1 Like
Answer
False
Reason — <input type="submit" name="submit" id="submit" />
creates a SUBMIT button. RESET button is created by the following code:
<input type="reset" name="reset" id="reset" />
Answered By
2 Likes