How to make an input tag read-only using HTML?
Originally Published Here ๐!
To make an input tag field readonly, you can pass an attribute called readonly to the tag in HTML.
<!-- Make `Input` Tag Readonly in HTML -->
<input type="text" readonly />
Adding the readonly attribute to the input ta...
melvingeorge-me.hashnode.dev1 min read