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