ho risolto , posto la soluzione :
css:
@font-face
{
font-family: PT Serif;
src: url('./fonts/PTF56F.ttf');
}
@font-face
{
font-family: Times New Roman;
src: url('./fonts/TimesNewRoman.ttf');
}
@font-face
{
font-family: Georgia;
src: url('./fonts/Georgia.ttf');
}


p.dani {
font-family:"PT Serif",TimesNewRoman,"Times New Roman",Times,Georgia,serif;
font-size:20px;
}

html:
<p class="dani">Ciao</p>

Grazie ancora.