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