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