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