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