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