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