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