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