graph TD
A[Document]
A --> B[html]
B --> C[head]
C --> D[meta]
D --> D1{{charset=UTF-8}}
C --> E[meta]
E --> E1{{name=viewport}}
E --> E2{{content=width=device-width, initial-scale=1.0}}
C --> F[title]
F --> F1("'Sample Document'")
B --> G[body]
G --> H[h1]
H --> H1("'Welcome to the DOM'")
G --> I[p]
I --> I1("'This is a simple HTML document.'")
G --> J[div]
J --> J1{{id=container}}
J --> K[p]
K --> K1{{class=text}}
K --> K2("'First paragraph'")
J --> L[p]
L --> L1{{class=text}}
L --> L2("'Second paragraph'")
Comments
Single-line comment:
// This is a commentMulti-line comment:
/* This is a multi-line comment */