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