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