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