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