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