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