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