Question #88

Author: admin
tags: HTML  
<form disabled>
  <input type="text" name="first_name">
  <input type="text" name="last_name">
  <button type="submit">Send</button>
</form>
What will be disabled?
All inputs and submit button
Only submit button
Only inputs
Nothing
The disabled attribute is supported by <button>, <command>, <fieldset>, <keygen>, <optgroup>, <option>, <select>, <textarea> and <input>.
<form> element does not support this attribute.
Rate the difficulty of the question:
easyhard