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