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