Answers for "how to make input uneditable in html"

1

uneditable input html

<form 
      action="/action_page.php">

  <label for="country">Country:</label> 
  <input type="text" 
         id="country" name="country" value="Norway" readonly><br><br>

  <input type="submit" value="Submit">

</form>
Posted by: Guest on August-09-2021

Code answers related to "how to make input uneditable in html"

Browse Popular Code Answers by Language