A META tag in an HTML document can be used to redirect a browser. This is achieved by using the "http-equiv" attribute with a value of "refresh" and specifying the URL to redirect to in the "content" attribute. For example:
```html
<meta http-equiv="refresh"
Show more…