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