Ciao

è possibile inserire nella regola @font-face 2 o più caratteri?

Io ho provato così ma non funziona:

codice:
@font-face {
    font-family: 'ArmWrestlerBold';
    src: url('ArmWrestler-webfont.eot');
    src: url('ArmWrestler-webfont.eot?#iefix') format('embedded-opentype'),
         url('ArmWrestler-webfont.woff') format('woff'),
         url('ArmWrestler-webfont.ttf') format('truetype'),
         url('ArmWrestler-webfont.svg#ArmWrestlerBold') format('svg');
    font-weight: normal;
    font-style: normal;
	
    font-family: 'AndikaBasicRegular';
    src: url('/font/AndBasR-webfont.eot');
    src: url('/font/AndBasR-webfont.eot?#iefix') format('embedded-opentype'),
         url('/font/AndBasR-webfont.woff') format('woff'),
         url('/font/AndBasR-webfont.ttf') format('truetype'),
         url('/font/AndBasR-webfont.svg#AndikaBasicRegular') format('svg');
    font-weight: normal;
    font-style: normal;
	
    font-family: 'BebasRegular';
    src: url('bebas___-webfont.eot');
    src: url('bebas___-webfont.eot?#iefix') format('embedded-opentype'),
         url('bebas___-webfont.woff') format('woff'),
         url('bebas___-webfont.ttf') format('truetype'),
         url('bebas___-webfont.svg#BebasRegular') format('svg');
    font-weight: normal;
    font-style: normal;}
Pier