-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDOM.html
32 lines (32 loc) Β· 1.24 KB
/
DOM.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Web design|DOM</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="background-color:green";>
<div class="wrapper">
<center><h1>DOM</h1></center>
<center><h3>The Document Object Model (DOM) is a cross-platform and language-independent interface that treats an XML or HTML document as a tree structure where in each node is an object representing a part of the document. The DOM represents a document with a logical tree. Watch the below videos to know more about DOM.</h3></center>
<br>
<br>
<center><h2>INTODUCTION TO DOM</h2>
<br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/l-0nPnSvbX8" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br>
<br>
<br>
<h2>WEBSITE DOM IN JAVASCRIPT</h2>
<br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/t3CWlfZUvL8" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
</center>
</body>
</html>