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