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