Use on the webTotal Use [ 5144 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/9b2e12579a9a4d53e8a4a66e2343d475?family=Parnaso+Small+Trial+Smbold+It" 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/9b2e12579a9a4d53e8a4a66e2343d475?family=Parnaso+Small+Trial+Smbold+It);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Parnaso Small Trial Smbold It";
src: url("https://db.onlinewebfonts.com/t/9b2e12579a9a4d53e8a4a66e2343d475.eot");
src: url("https://db.onlinewebfonts.com/t/9b2e12579a9a4d53e8a4a66e2343d475.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/9b2e12579a9a4d53e8a4a66e2343d475.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/9b2e12579a9a4d53e8a4a66e2343d475.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/9b2e12579a9a4d53e8a4a66e2343d475.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/9b2e12579a9a4d53e8a4a66e2343d475.svg#Parnaso Small Trial Smbold It")format("svg");
}
2CSS rules to specify fonts
font-family: "Parnaso Small Trial Smbold It";