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