Hide the parent element while keeping the child element visible.
<html>
<span class="parent">
Hello world
<a href="#">Link 1</a>
<a href="#">Link 2</a>
</span>
</html>
/* css */
.parent { visibility: hidden;}
.parent a { visibility: visible;}