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