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