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