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