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