HalosGhost / halosgho.st

The repo backing my homepage
GNU General Public License v3.0
3 stars 0 forks source link

Signal External Links #13

Closed HalosGhost closed 6 years ago

HalosGhost commented 6 years ago

For accessibility, and general usability, we should add some kind of signal to suggest that a link will leave our site (à la Wikipedia's external-link icon).

We could do this entirely in CSS and text by doing something like this:

a[href^="http"]:after,
a[href^="https"]:after{
    content:"(External Link)";
    margin-left:0.3rem;
}