A tag @font-face que havia sido eliminada do padrão CSS2.1, foi reintroduzida no CSS3. Entretanto o desafio da ausência
de padronização ainda não foi superado. Assinale a alternativa que apresenta a sintaxe correta para a utilização
de @font-face na maior parte dos browsers :
A
@font-face {
font-family: 'MinhaFonteLinda';
src: url('MinhaFonteLinda-webfont.eot')
src: url('MinhaFonteLinda-webfont.eot?#iefix') format('embedded-opentype'),
url('MinhaFonteLinda-webfont.woff') format('woff'),
url('MinhaFonteLinda-webfont.ttf') format('truetype'),
url('MinhaFonteLinda-webfont.svg#MinhaFonteLindaRegular') format('svg');
font-weight: normal;
font-style: normal;
}
B
@font-face
{
font-family: 'MinhaFonteLinda';
src: url('MinhaFonteLinda-webfont.eot?#iefix') format('embedded-opentype'),
url('MinhaFonteLinda.woff') format('woff'; ttf),
font-weight: normal;
font-style: normal;
}
C
{
@font-face
<font-family: 'MinhaFonteLinda'>
<href: 'http://www.RepositoriodeFontes.com/MinhaFonteLinda/'>
<webfont: 'eot,woff,ttf,svg'>
font-weight: normal;
font-style: normal;
}
D
{
@font-face: 'MinhaFonteLinda';
src: 'http://www.RepositoriodeFontes.com'
webfont (eot,woff,ttf,svg)format('embedded-opentype')
font-weight: normal;
font-style: normal;
}
E
{
@font-face
font-family: 'MinhaFonteLinda';
src: url('MinhaFonteLinda-webfont:'eot,woff,ttf')
src: url('MinhaFonteLinda-webfont#iefix')
format: regular;
font-weight: normal;
font-style: normal;
}