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