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