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