1. Resource Hints: dns-prefetch

    Gives a hint to the browser to perform a DNS lookup in the background to improve performance. This is indicated using `<link rel="dns-prefetch" href="https://example.com/">`

  2. Resource Hints: modulepreload

    Using `<link rel="modulepreload">`, browsers can be informed to prefetch module scripts without having to execute them, allowing fine-grained control over when and how module resources are loaded.

  3. Resource Hints: prefetch

    Informs the browsers that a given resource should be prefetched so it can be loaded more quickly. This is indicated using `<link rel="prefetch" href="(url)">`

  4. Resource Hints: preload

    Using `<link rel="preload">`, browsers can be informed to prefetch resources without having to execute them, allowing fine-grained control over when and how resources are loaded. Only the following `as` values are supported: fetch, image, font, script, style, track.

  5. performanceresourcetiming api: deliverytype: `deliverytype="navigational-prefetch"`

  6. html element: script: type: `type="speculationrules"`: `prefetch` key

  7. headers http header: content-security-policy: prefetch-src

  8. headers http header: sec-purpose: `sec-purpose` for `<link rel="prefetch">` prefetch

  9. headers http header: sec-purpose: `sec-purpose` for `<script type="speculationrules">` prefetch

  10. headers http header: x-dns-prefetch-control