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