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