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