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