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