Use on the webTotal Use [ 4711 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/a6683a95d01be952b6e27046d458a775?family=TT+Ricordi+Todi+Trial" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/a6683a95d01be952b6e27046d458a775?family=TT+Ricordi+Todi+Trial);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "TT Ricordi Todi Trial";
src: url("https://db.onlinewebfonts.com/t/a6683a95d01be952b6e27046d458a775.eot");
src: url("https://db.onlinewebfonts.com/t/a6683a95d01be952b6e27046d458a775.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/a6683a95d01be952b6e27046d458a775.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/a6683a95d01be952b6e27046d458a775.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/a6683a95d01be952b6e27046d458a775.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/a6683a95d01be952b6e27046d458a775.svg#TT Ricordi Todi Trial")format("svg");
}
2CSS rules to specify fonts
font-family: "TT Ricordi Todi Trial";