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