Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/lesson/html-input-html-textarea.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ Just like any other HTML tag, the input tags have several attributes that can be
<input type="text" name="firstname" value="John"/>
```

`READ ONLY`: Determines if the user is allowed to change the value of the input.
`READ ONLY`: Determine if the user is allowed to change the value of the input.

```html
<input type="text" name="firstname" value="John" readonly/>
```

`DISABLED`: Determines if the input is going to be gray and read-only. The disabled inputs are not sent to the backend – they act as if they never existed.
`DISABLED`: Determine if the input is going to be gray and read-only. The disabled inputs are not sent to the backend – they act as if they never existed.

```html
<input type="text" name="firstname" value="John" disabled/>
Expand Down