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