Skip to content

Commit

Permalink
Added explanation to clarify relationship between node and element.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hachibroku committed May 28, 2024
1 parent 1ef952f commit 7945fc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This section contains a general overview of topics that you will learn in this l

### Document Object Model

The DOM (or Document Object Model) is a tree-like representation of the contents of a webpage - a tree of "nodes" with different relationships depending on how they're arranged in the HTML document.
The DOM (or Document Object Model) is a tree-like representation of the contents of a webpage - a tree of "nodes" with different relationships depending on how they're arranged in the HTML document. There are many types of node, most of which are not commonly used. In this lesson we will be focusing on "element" nodes which are primarily used for manipulating the DOM.

```html
<div id="container">
Expand Down

0 comments on commit 7945fc7

Please sign in to comment.