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