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