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