JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<a id="mdn" href="http://developer.mozilla.com">
Mozilla Developer Network</a>
</div>
<div>
<a id="w3c" href="http://w3c.org">
World Wide Web Consortium</a>
</div>
CSS
a { text-decoration: none; }
#mdn:before {
content:url(http://developer.mozilla.com/favicon.ico) " ";
}
#w3c:before {
content:url(http://w3c.org/2008/site/images/favicon.ico) " ";
}
a:after {
content: " (" attr(id) ")";
}