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