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