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