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