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