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