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