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