diff --git a/guide/english/html/tutorials/how-to-create-an-html-button-that-acts-like-a-link/index.md b/guide/english/html/tutorials/how-to-create-an-html-button-that-acts-like-a-link/index.md
index aed3f58f79..f52262a09b 100644
--- a/guide/english/html/tutorials/how-to-create-an-html-button-that-acts-like-a-link/index.md
+++ b/guide/english/html/tutorials/how-to-create-an-html-button-that-acts-like-a-link/index.md
@@ -19,7 +19,7 @@ A second option is to create your link as you normally would with your `` tag
Link To freeCodeCamp
```
-Once you've created your link, you can the use CSS to make it look like a button. For instance, you could add a border, a background color, some styles for when the user is hovering the link...
+Once you've created your link, you can then use CSS to make it look like a button. For instance, you could add a border, a background color, some styles for when the user is hovering the link...
Another way to add a button is to wrap an `input` inside `form` tags. Specify the desired target URL in the form action attribute.