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