metarefresh
MetaRefresh refers to an HTML technique that uses a meta tag with http-equiv="refresh" to instruct a browser to refresh the current page or navigate to a different URL after a specified delay. It is commonly implemented with a content attribute that combines a delay in seconds and an optional destination URL.
A typical example is: <meta http-equiv="refresh" content="5; url=https://example.com/">. The browser waits five seconds and then loads
Use cases include temporary redirection, countdown-style pages, or pairing content with a brief automatic refresh. It
Accessibility and user experience considerations are important. Meta refresh can be disruptive to screen readers, can
Alternatives include server-side HTTP redirects (3xx status codes), the Refresh HTTP header, or JavaScript-based redirects (for