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