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