input tag readonly code example
Example 1: read only html
<!-- Using readonly attribute is use to prevent changing of input value. -->
Example:
<input type="text" name="username" value="lol" readonly>
Example 2: using value attribute in input tag makes it read only
use defaultValue tag