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