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