It's not a problem, but a question that can solve many of my problems.
Let's say I upload this CSS file to my site:
<link href='http://host-1.com/style.css' rel='stylesheet' type='text/css'/>
But if host-1.com is offline? Is there any way to check this and use another file, for example:
<link href='http://host-2.com/style.css' rel='stylesheet' type='text/css'/>
As if I meant it like this for my code:
//Carregar esse arquivo css
<link href='http://host-1.com/style.css' rel='stylesheet' type='text/css'/>
//Mas no caso dele não funcionar, carregue esse:
<link href='http://host-2.com/style.css' rel='stylesheet' type='text/css'/>