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