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