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