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