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