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