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