From 30a3657e024017ff1c542af8bb5c128f57985d43 Mon Sep 17 00:00:00 2001 From: Wasit Ali <66210604+qwertyfi@users.noreply.github.com> Date: Tue, 4 Jul 2023 14:51:45 +0530 Subject: [PATCH] Fix typo in 21_day_dom.md A small fix in the typo for better readability. --- 21_Day_DOM/21_day_dom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/21_Day_DOM/21_day_dom.md b/21_Day_DOM/21_day_dom.md index af46260..d5be9f6 100644 --- a/21_Day_DOM/21_day_dom.md +++ b/21_Day_DOM/21_day_dom.md @@ -203,7 +203,7 @@ titles[3].classList.remove('title', 'header-title') ### Adding Text to HTML element -An HTML is a build block of an opening tag, a closing tag and a text content. We can add a text content using the property _textContent_ or \*innerHTML. +An HTML element is a build block of an opening tag, a closing tag and a text content. We can add a text content using the property _textContent_ or \*innerHTML. #### Adding Text content using textContent