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