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