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