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