Blog Post

Show Links In Printed Websites

You can make a link show up on a print page using pseudo elements and the attr function like this:

a::after { content: “ (“ attr(href) “)”;}Code language: CSS (css)

This will make a link like Zombie Smashing Awesomeness appear as:

Zombie Smashing Awesomeness (https://undead.institute)Code language: JavaScript (javascript)

when printed.