<script>
var cssId = 'NombreCss';
if (!document.getElementById(cssId)) {
var head = document.getElementsByTagName('head')[0];
var link = document.createElement('link');
link.id = cssId;
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'https://SuWeb.com/nombre.css';
link.media = 'all';
head.appendChild(link);
}
</script>