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