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