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