---
tags:
- html
- web
---
Allows setting default link URL and target. `href` defines base url for all relative links.
`target` sets where links should open:
- `_self` (default) current window & context
- `_blank` new window
- `_parent`can be self if not iframe
- `_top`same browser tab, but pop out to take entire tab
So `_top` link from an iframe will load our link in the entire tab.
Anchor links resolve the base. So they might always reload the entire page.