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