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