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