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