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