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