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