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