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