diff --git a/foundations/html_css/html-foundations/html-boilerplate.md b/foundations/html_css/html-foundations/html-boilerplate.md index 4b2f3e29d9f..b40b97c1832 100644 --- a/foundations/html_css/html-foundations/html-boilerplate.md +++ b/foundations/html_css/html-foundations/html-boilerplate.md @@ -49,6 +49,8 @@ Back in the `index.html` file, let's add the `` element by typing out its ~~~ +Noticed the word `lang` here? It represents an HTML attribute which is associated with the given HTML tag i.e. `` in this case.These attributes provide additional information about HTML elements.(More about `HTML attributes` in the following lesson) + #### What is the lang attribute? `lang` specifies the language of the text content in that element. This attribute is primarily used for improving accessibility of the webpage. It allows assistive technologies, for example screen readers, to adapt according to the language and invoke correct pronunciation.