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