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