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