DOM Manipulation
The HTML DOM is a standard object model and programming interface for HTML.
javascript
document.getElementById("demo").innerHTML = "Hello World!";
document.getElementsByTagName("p");
document.querySelector(".example");
// Changing CSS
document.getElementById("p2").style.color = "blue";