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