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