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