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