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