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