On the home page of my site I'd like to preload fonts and images that are used on other pages of the site, to avoid FOUC's.
What's the best way to do this?
For fonts I currently have this code on my homepage but I'm sure there's a better way.
<div id="font-load1">aaa</div>
<div id="font-load2">aaa</div>
And then in style.css to hide the text:
#font-load1{
font-family:"BellMTItalic";
font-style:italic;
text-indent: -900%;
}
#font-load2{
font-family:"SavoyeLETPlain";
text-indent: -900%;
}
Thanks