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