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