Link Tags in HTML Head
The <link> element defines relationships between the current document and external resources. The rel attribute specifies the relationship type and the href attribute points to the resource. Unlike <a>, <link> is always used in <head> and creates no clickable link.
Common Link Relationships
rel="stylesheet" loads an external CSS file. rel="icon" sets the favicon. rel="preconnect" and rel="preload" are performance hints: preconnect establishes an early connection to a domain (useful for third-party fonts), while preload fetches a resource early in the page lifecycle (useful for critical fonts, images, or scripts). rel="alternate" points to translations or RSS feeds.