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