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