how to make input text not editable in html code example
Example 1: js making input non typeable
//Use readonly
<input id="myInput" readonly>
Example 2: read only html
<!-- Using readonly attribute is use to prevent changing of input value. -->
Example:
<input type="text" name="username" value="lol" readonly>