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