Wondering if I include various font formats within @font-face in CSS, all of them will be downloaded no matter whether they will be used in the browser, or only the one that is used in the browser will be download?
@font-face {
font-family: 'my-web-font';
src: url('webfont.eot');
src: url('webfont.eot?#iefix') format('embedded-opentype'),
url('webfont.woff') format('woff'),
url('webfont.ttf') format('truetype'),
url('webfont.svg#webfont') format('svg');
font-weight: normal;
font-style: normal;
}