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