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