Render Flow - Labels and placeholders
Read <form>
→Create FORM node
Read <label>
→Create LABEL node
Add text 'Name:'
Associate LABEL with input via 'for' attribute
Read <input>
→Create INPUT node
Add placeholder attribute
Close INPUT
Close FORM
The browser reads the form element, creates label and input nodes, associates the label with the input using the 'for' attribute, and applies the placeholder text inside the input box.