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