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