1
HTML/CSSBeginner#html#accessibility
<head> contains metadata not rendered directly on the page — title, meta tags, links to stylesheets, and scripts. <body> contains all visible content rendered in the browser viewport.
<html> <head> <title>My Page</title> <link rel="stylesheet" href="style.css"> </head> <body> <h1>Visible content</h1> </body> </html>