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