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