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