Render Flow - Linking CSS to HTML
Read HTML file
Find <link> tag in <head>
Read href attribute
Fetch CSS file
Parse CSS rules
Match selectors to HTML elements
Apply styles to elements
Render styled page
The browser reads the HTML, finds the link to the CSS file, loads and parses the CSS, then applies the styles to the matching HTML elements before showing the styled page.