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