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