I am trying to load css from javascript. I have a little icon I need styles for that my users display on their site through my script tag like <script src="mywebiste.com/api.js"></script
Rather than doing inline styles like this:
document.body.innerHTML +=
'<div style="position:absolute;width:10%;height:10%;opacity:0.3;
z-index:100;background:#000;">
</div>';
How can I load css styles from javascript? How do widgets like intercom.com do it?