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