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