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