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