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