CSS

Recipe 3.6 Inform users of changing context

Sample:

Max Böck’s website.

Code:

<a href="https://www.mxb.dev" target="_blank">
 Max Böck’s website.
</a>

<style>
 [target="_blank"]::after {
  content: " (opens in new tab)";
}
</style>