fix(curriculum): clarify DOM element node wording (#67330)

This commit is contained in:
Mukunda Rao Katta
2026-05-12 01:23:40 -07:00
committed by GitHub
parent 77c76d63e0
commit cbda4cf5c9

View File

@@ -11,7 +11,7 @@ Let's learn about the DOM and why it's so important for web development. DOM sta
With the DOM, you can add, modify, or delete elements on a webpage. You can even make your website interactive by making elements listen to and respond to events.
In the DOM, an HTML document is represented as a tree of nodes. Each node represents an HTML element from the HTML document:
In the DOM, an HTML document is represented as a tree of nodes. Each element node represents an HTML element from the HTML document:
```html
<!DOCTYPE html>