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