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