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