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