Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0d719aa

Browse files
authored
Update LESSONPLAN.md
1 parent e9e0ef3 commit 0d719aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Week1/LESSONPLAN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ FIRST HALF (12.00 - 13.30)
2323
### Explanation
2424
The [Document Object Model (DOM)](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Introduction) is an _object-oriented representation_ of a web page(HTML document) which the web browsers make available to JavaScript for manipulation. Inside a JavaScript file, we can access the DOM through a global object called `document` or `window.document`.
2525

26-
**It is not a programming language but without it JavaScript would not have any knowledge of our web page/HTML document.**
26+
**It is not a programming language but without it JavaScript would not have any knowledge of our web page/HTML document.**
2727
### Example
28-
```HTML
28+
```HTML
2929
<!DOCTYPE html>
3030
<html>
3131
<head>
@@ -39,7 +39,7 @@ The [Document Object Model (DOM)](https://developer.mozilla.org/en-US/docs/Web/A
3939
</html>
4040
```
4141

42-
![Pictorial Representation of DOM](https://www.w3schools.com/js/pic_htmltree.gif)
42+
![Pictorial Representation of DOM](https://www.w3schools.com/js/pic_htmltree.gif)
4343
### Exercise
4444
### Essence
4545

0 commit comments

Comments
 (0)