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