
DOM Abbreviated as Document Object Model.
It’s a Platform and Language API(Application Programming Interface) which allows programs to access andupdate the content, Structure, and Style of a document.
We can Say JVM(Java virtual Machine) for Java. DOM is for UI(HTML, CSS, Javascript etc).
DOM represents a document as a tree structure. The tree made up of parent-child relationship.
parent-child relationship means a parent can have one or more children nodes.
Example:
<html>
<head>
<title>title text</title>
</head>
<body>
content text
</body>
</html>
DOM Structure:
DOM Structure
In...