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