diff --git a/files/en-us/web/html/element/index.md b/files/en-us/web/html/element/index.md
index a29231c76566bf1..fa908fad14b1905 100644
--- a/files/en-us/web/html/element/index.md
+++ b/files/en-us/web/html/element/index.md
@@ -85,7 +85,7 @@ Use the HTML inline text semantic to define the meaning, structure, or style of
| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| {{HTMLElement("a")}} | Together with its `href` attribute, creates a hyperlink to web pages, files, email addresses, locations within the current page, or anything else a URL can address. |
| {{HTMLElement("abbr")}} | Represents an abbreviation or acronym. |
-| {{HTMLElement("b")}} | Used to draw the reader's attention to the element's contents, which are not otherwise granted special importance. This was formerly known as the Boldface element, and most browsers still draw the text in boldface. However, you should not use `` for styling text or granting importance. If you wish to create boldface text, you should use the CSS {{cssxref("font-weight")}} property. If you wish to indicate an element is of special importance, you should use the strong element. |
+| {{HTMLElement("b")}} | Used to draw the reader's attention to the element's contents, which are not otherwise granted special importance. This was formerly known as the Boldface element, and most browsers still draw the text in boldface. However, you should not use `` for styling text or granting importance. If you wish to create boldface text, you should use the CSS {{cssxref("font-weight")}} property. If you wish to indicate an element is of special importance, you should use the {{HTMLElement("strong")}} element. |
| {{HTMLElement("bdi")}} | Tells the browser's bidirectional algorithm to treat the text it contains in isolation from its surrounding text. It's particularly useful when a website dynamically inserts some text and doesn't know the directionality of the text being inserted. |
| {{HTMLElement("bdo")}} | Overrides the current directionality of text, so that the text within is rendered in a different direction. |
| {{HTMLElement("br")}} | Produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant. |