HTML Architecture Cheat Sheet
A quick summary index separating document rendering classifications.
| Element Classification | Structural Context Level | Common Target Elements |
|---|---|---|
| Block Level | Starts on a new line, takes up full row grid width. | <div> <p> <h1> <section> |
| Inline Level | Fits cleanly side-by-side with text wrapping content sizes. | <span> <a> <strong> <img> |
| Form Components | Handles interactive operational inputs and submission streams. | <form> <input> <button> |