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