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