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