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