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