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