<html>
<body>
<h2>The disabled Attribute</h2>
<p>The disabled attribute specifies that the input field is disabled:</p>
<form action="#">
First name:<br>
<input type="text" name="firstname" value ="John" disabled>
<br>
Last name:<br>
<input type="text" name="lastname">
</form>
</body>
<!-- Mirrored from www.w3schools.com/html/tryit.asp?filename=tryhtml_input_attributes_disabled by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:33:53 GMT -->
</html>