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