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