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