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