diff --git a/src/content/lesson/html-input-html-textarea.md b/src/content/lesson/html-input-html-textarea.md
index c3ff87bc6..b64c3713c 100644
--- a/src/content/lesson/html-input-html-textarea.md
+++ b/src/content/lesson/html-input-html-textarea.md
@@ -48,13 +48,13 @@ Just like any other HTML tag, the input tags have several attributes that can be
```
-`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
```
-`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