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