<html>
<body>
<h2>Атрибут disabled</h2>
<p>Атрибут disabled указывает, что поле input отключено:</p>
<form action="#">
Имя:<br>
<input type="text" name="firstname" value ="John" disabled>
<br>
Фамилия:<br>
<input type="text" name="lastname">
</form>
</body>
</html>