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