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