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