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