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