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