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