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