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