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