How to disable an input tag using HTML?
Originally Published Here ๐!
To disable an input field, you can pass an attribute called disabled to the tag in HTML.
<!-- Disable `Input` Tag in HTML -->
<input type="text" disabled />
Adding the disabled attribute to the input tag will restrict ...
melvingeorge-me.hashnode.dev1 min read