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