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