This page demonstrates different types of content that can be cached by browsers and proxy servers. Check your browser's developer tools to see cache behavior.
Images are typically cached for long periods. These use Cache-Control: public, max-age=86400, immutable
CSS and JS files with different cache policies:
This text uses cached CSS
test-styles.css?v=1
test-script.js?v=1
Versioned with content hash
test-styles.a1b2c3.css
test-module.js
Font files are cached for extended periods:
Custom WOFF2 Font
External font from CDN
Uses ETag for cache revalidation
Uses Last-Modified header
Always fetches fresh (timestamp query)
Never revalidates (immutable flag)