input type disabled code example
Example 1: disable input type button in html
<input type="button" disabled value="Submit">
Example 2: how to fix input field and disabled
<input type="text" readonly="readonly" />
<input type="button" disabled value="Submit">
<input type="text" readonly="readonly" />