DOM

You might say

A task appears after I click Add, but it is not in the source HTML. Help me confirm what was inserted at runtime.

The DOM is the node tree the browser uses to represent and modify a web document.For example, the source HTML may contain one task while a click adds another to the page. A script created a node and inserted it into the runtime DOM. That change affects the current page, but whether it survives a refresh depends on separate persistence in a backend or browser storage.
Know first
Document Object Model
Further reading