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