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