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