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