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