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