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