From cd140600a11419175e1dc3db6397af0c3d2b4df0 Mon Sep 17 00:00:00 2001 From: satvator Date: Mon, 18 Sep 2023 17:29:12 +0530 Subject: [PATCH] Added 2 lines about 'HTML attributes' --- foundations/html_css/html-foundations/html-boilerplate.md | 2 ++ 1 file changed, 2 insertions(+) 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.