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